-
Notifications
You must be signed in to change notification settings - Fork 5
/
app.wxss
61 lines (51 loc) · 1.08 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
page {
font-family: PingFangSC-Regular,Microsoft YaHei,HelveticaNeueDeskInterface-Light,Helvetica Neue,Helvetica,STHeiTi,sans-serif;
min-height: 100vh;
}
.container,page {
box-sizing: border-box;
}
.container {
align-items: center;
display: flex;
flex-direction: column;
height: 100%;
justify-content: space-between;
padding: 200rpx 0;
}
scroll-view,text,view {
box-sizing: border-box;
}
scroll-view::-webkit-scrollbar,view::-webkit-scrollbar {
background: transparent!important;
height: 0!important;
width: 0!important;
}
scroll-view::-webkit-scrollbar-track,scroll-view::-webkit-scrollbar-track-piece,view::-webkit-scrollbar-track,view::-webkit-scrollbar-track-piece {
background: transparent;
}
.btn {
background: transparent;
border: none;
margin: 0;
padding: 0;
}
.btn:after {
display: none;
}
.modal {
background: rgba(0,0,0,.6);
bottom: 0;
left: 0;
position: fixed;
right: 0;
top: 0;
z-index: 10;
}
image {
height: 0;
width: 0;
}
::-webkit-scrollbar {
display: none;
}