common.less
683 Bytes
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
@charset "UTF-8";
html {
width: 100%;
height: 100%;
}
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
@supports (padding-bottom: env(safe-area-inset-bottom)) {
body {
padding-bottom: env(safe-area-inset-bottom);
}
}
.common {
width: 750px;
min-height: 100vh;
max-width: 750px;
overflow: hidden;
}
/deep/ .van-list__loading {
.van-loading {
.van-loading__text {
font-size: 30px;
line-height: 100px;
}
}
}
/deep/ .van-list__finished-text {
font-size: 30px;
line-height: 100px;
}
.mint-indicator {
.mint-indicator-wrapper {
z-index: 300;
}
}