-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.wxss
62 lines (51 loc) · 848 Bytes
/
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
@import "weui.wxss";
.page_hd{
padding:10rpx 30rpx;
background-color: #fff;
}
.page_hd > view{
text-align: center;
font-size:16px;
color:rgb(102, 102, 102);
}
text,
view.ellipsis{
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
}
.page{
background-color: #f8f8f8;
height: 100%;
width: 100%;
}
view::-webkit-scrollbar,
.page__bd::-webkit-scrollbar{
border: none;
background-color: transparent;
width: 1px;
}
.page__bd{
background-color: #f8f8f8;
position: fixed;
height: 100%;
width: 100%;
overflow-y: scroll;
}
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 200rpx 0;
box-sizing: border-box;
}
form{
width: 100%;
height: 100%;
}
.button{
background-color: #00a0ea;
color: #fff;
}