1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| @import './reset.scss';
| @import './variables.module.scss';
| @import './transition.scss';
| @import './element.scss';
| @import './wrapper.scss';
|
| body {
| height: 100%;
| margin: 0;
| -moz-osx-font-smoothing: grayscale;
| -webkit-font-smoothing: antialiased;
| text-rendering: optimizeLegibility;
| font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
| }
|
| html {
| height: 100%;
| font-size: var(--el-font-size-base);
| color: #666
| }
|
| #app {
| height: 100%;
| }
|
|