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
<template>
<div id="app">
<router-view />
</div>
</template>
<script>
export default {
name: 'App'
}
</script>
<style lang="scss" type="text/stylus">
body {
font-family:”Microsoft YaHei”,Arial,Helvetica,sans-serif;
}
/* 在全局CSS里引用: */
/* 滚动条宽度 */
::-webkit-scrollbar {
width: 12px;
height: 12px;
}
/* 滚动条的滑块 */
::-webkit-scrollbar-thumb {
background-color: #c0ccda;
border-radius: 6px;
}
/* --------- 自定义class全局统一样式 ---------- */
.app-container {
height: 100%;
.box-card {
height: 100%;
overflow: hidden;
}
}
/* --- start --- element组件样式重置 全局 -- start ----- */
.el-card__header{
padding: 12px;
/* 修改在此class中的p */
p {
margin: 0;
}
}
// 搜索条件 样式
.queryFormInline {
.el-form-item {
margin: 0 5px ;
padding: 0;
}
}
/* --- end --- element组件样式重置 -- end ----- */
</style>