index.scss
1.31 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
@import './markdown.scss';
@import './nprogress.scss';
@import './element.scss';
html,
body {
padding: 0;
margin: 0;
&::-webkit-scrollbar {
width: 5px;
}
&::-webkit-scrollbar-thumb {
background-color: #e5e5e5;
}
}
#app {
font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB,
Microsoft YaHei, SimSun, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.side-menu__group {
display: flex;
align-items: flex-end;
justify-content: space-between;
padding: 0 20px;
.subtitle {
font-weight: normal;
color: $text;
font-size: 14px;
}
}
.demo-box {
width: 300px;
}
.demo-model {
padding: 0 !important;
}
.code-snippet-box {
display: flex;
flex-wrap: wrap;
box-sizing: border-box;
align-items: flex-start;
.code-snippet {
flex: 1;
min-width: 45%;
box-sizing: border-box;
margin-right: 16px;
}
}
.eagle-schema__view {
.el-form-item {
font-weight: normal !important;
margin-bottom: 0 !important;
&__label {
line-height: 1.5 !important;
color: #595959 !important;
}
&__content {
line-height: 1.5 !important;
color: #000 !important;
}
}
}
@media only screen and (min-width: 1400px) {
.code-snippet-box {
.code-snippet {
min-width: 30%;
}
}
}