-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.wxss
68 lines (57 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
62
63
64
65
66
67
68
/**app.wxss**/
@import '/component/weui/weui-wxss/dist/style/weui.wxss';
.container {
box-sizing: border-box;
background-color: #f4f4f4;
font-family: PingFangSC-Light, helvetica, 'Heiti SC';
}
::-webkit-scrollbar {
display: none;
}
view,
image,
text,
navigator {
box-sizing: border-box;
padding: 0;
margin: 0;
}
view,
text {
font-family: PingFangSC-Light, helvetica, 'Heiti SC';
font-size: 29rpx;
color: #333;
}
button::after {
display: none;
}
.display-none {
display: none !important;
}
::-webkit-scrollbar {
width: 5px;
background-color: #f5f5f5;
}
::-webkit-scrollbar-thumb {
background-color: #999;
}
.empty-view {
margin-top: 50%;
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.empty-view .icon {
height: 120rpx;
width: 120rpx;
margin-bottom: 10rpx;
}
.empty-view .text {
width: auto;
font-size: 28rpx;
line-height: 35rpx;
color: #999;
}