-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.wxss
73 lines (69 loc) · 1.12 KB
/
app.wxss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
@import 'weui.wxss';
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
box-sizing: border-box;
}
page{
display: block;
min-height: 100%;
position: relative;
}
view{
display: inline-block;
box-sizing: border-box;
width: 100%;
font-size: 30rpx;
text-align: center;
vertical-align: top;
}
form{
width: 100%;
height: auto;
display: inline-block;
font-size: 0;
box-sizing: border-box;
}
input{
display: inline-block;
box-sizing: border-box;
width: 100%;
height: unset;
min-height: unset;
vertical-align: top;
}
label{
display: inline-block;
box-sizing: border-box;
vertical-align: top;
}
button{
background-color: white;
color: green;
border: solid #CCCCCC 1rpx;
border-radius: 0;
}
/* 去掉按钮边框 */
button::after{
border: none;
}
.footer-join{
margin-top: 30rpx;
margin-bottom: 20rpx;
color: #aaa;
position: absolute;
bottom: 0;
left: 0;
text-align: center;
}
.footer-join view{
line-height: 1.5;
font-size: 24rpx;
text-align: center;
}
radio-group, picker{
display: inline-block;
}