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
41
42
43
44
| @import '~@/assets/style/unit/color.scss';
|
| // 工具类名统一前缀
| $prefix: d2;
|
| // 禁止用户选中 鼠标变为手形
| %unable-select {
| user-select: none;
| cursor: pointer;
| }
|
| // 填满父元素
| // 组要父元素 position: relative | absolute;
| %full {
| position: absolute;
| top: 0px;
| right: 0px;
| bottom: 0px;
| left: 0px;
| }
|
| // flex 垂直水平居中
| %flex-center-row {
| display: flex;
| justify-content: center;
| align-items: center;
| flex-direction: row;
| }
| %flex-center-col {
| display: flex;
| justify-content: center;
| align-items: center;
| flex-direction: column;
| }
|
| // 将元素模拟成卡片外观
| %card {
| border: 1px solid #dddee1;
| border-color: #e9eaec;
| background: #fff;
| border-radius: 4px;
| font-size: 14px;
| position: relative;
| }
|
|