-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.vue
50 lines (45 loc) · 935 Bytes
/
App.vue
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
<template>
<div id="app">
<home/>
<!-- <router-view/> -->
</div>
</template>
<script lang="ts">
import Vue from "vue";
import Home from "@/views/Home.vue";
export default Vue.extend({
components: {
Home: Home
}
});
</script>
<style lang="scss">
#app {
font-family: "Avenir", Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #2c3e50;
}
.el-collapse-item__wrap {
border-bottom: none !important;
}
.el-collapse-item__header {
border-bottom: none !important;
}
.el-collapse-item__content {
padding-bottom: 10px !important;
}
.el-input--small .el-input__inner {
padding: 0 10px;
}
.el-form-item__content {
// line-height: 1 !important;
}
.el-form-item.el-form-item--small .el-form-item__label {
// font-size: 12px;
// line-height: initial;
}
.el-form-item.el-form-item--small .static-text-value {
// line-height: 32px;
}
</style>