forked from zhongyuanhaiju/uniapp
优化:登录弹框样式优化
This commit is contained in:
parent
63d9b3bf86
commit
83ad7e9900
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<view>
|
||||
<!-- #ifdef MP-WEIXIN -->
|
||||
<view @touchmove.prevent.stop class="new-complete-info-popup">
|
||||
<view @touchmove.prevent.stop class="new-complete-info-popup" :style="{ '--background-image-': 'url('+ $util.img('public/static/img/login_bg.jpg') +')' }">
|
||||
<uni-popup ref="completeInfoPopup" type="center" :maskClick="true" @change="popupChange">
|
||||
<view class="new-complete-info-wrap">
|
||||
<!--登录主要内容-->
|
||||
|
|
@ -845,9 +845,10 @@ export default {
|
|||
//新版登录
|
||||
.new-complete-info-popup{
|
||||
.new-complete-info-wrap{
|
||||
|
||||
.login-content{
|
||||
background: #e2ea00;
|
||||
background: var(--background-image-) no-repeat;
|
||||
background-size: 100% 100%;
|
||||
//background: #e2ea00;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
margin: 0!important;
|
||||
|
|
@ -862,7 +863,6 @@ export default {
|
|||
justify-content: center;
|
||||
align-content: center;
|
||||
.login-buttons{
|
||||
height: 160rpx;
|
||||
display: inline-flex;
|
||||
flex-direction: column;
|
||||
flex-wrap: nowrap;
|
||||
|
|
@ -872,15 +872,15 @@ export default {
|
|||
}
|
||||
.mini-btn{
|
||||
display: block;
|
||||
width: 70vw;
|
||||
height: 70rpx;
|
||||
line-height: 70rpx;
|
||||
width: 80vw;
|
||||
height: 90rpx;
|
||||
line-height: 90rpx;
|
||||
border-radius: 350rpx;
|
||||
font-size: 30rpx;
|
||||
}
|
||||
.mini-btn:nth-child(1){
|
||||
margin-bottom: 20rpx!important;
|
||||
margin-bottom: 50rpx!important;
|
||||
}
|
||||
|
||||
.login-cancel-button{
|
||||
margin: 0!important;
|
||||
padding: 0!important;
|
||||
|
|
|
|||
Loading…
Reference in New Issue