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
| @import url(./less/examples.less);
|
| html,
| body,
| #app {
| width: 100%;
| height: 100%;
| margin: 0;
| }
|
| /* 滚动条 */
| *::-webkit-scrollbar {
| width: 8px;
| height: 8px;
| }
|
| *::-webkit-scrollbar-thumb {
| height: 8px;
| background-color: rgba(0, 0, 0, 0.30);
| }
|
| *::-webkit-scrollbar-thumb:hover {
| background-color: rgba(0, 0, 0, 0.6);
| }
|
| * {
| scrollbar-width: thin;
| -moz-scrollbar-width: thin;
| }
|
| .view {
| width: 100%;
| height: 100%;
| padding: 9px;
|
| &>div {
| background-color: #fff;
| padding: 11px;
| }
| }
|
|