1
dd
2026-01-09 f2249c16f741df9bbeab6ddc67e8527ca8ae580f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@import './variables.scss';
 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: $bg-primary;
  color: $text-primary;
  font-size: $font-md;
  line-height: 1.5;
}
 
#app {
  width: 100%;
  min-height: 100vh;
  background: $bg-primary;
}