1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| * {
| margin: 0;
| padding: 0;
| box-sizing: border-box;
| }
|
| html,
| body,
| #app {
| width: 100%;
| height: 100%;
| font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
| 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
| 'Noto Color Emoji';
| }
|
|