1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| :root {
| --primary-color: #409EFF;
| --success-color: #67C23A;
| --warning-color: #E6A23C;
| --danger-color: #F56C6C;
| --info-color: #909399;
| }
|
| html, body {
| margin: 0;
| padding: 0;
| height: 100%;
| }
|
| // 混入
| .flex-center {
| display: flex;
| justify-content: center;
| align-items: center;
| }
|
|