37 lines
487 B
Vue
37 lines
487 B
Vue
|
|
<template>
|
||
|
|
<router-view/>
|
||
|
|
</template>
|
||
|
|
<style lang="scss">
|
||
|
|
#app {
|
||
|
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
||
|
|
-webkit-font-smoothing: antialiased;
|
||
|
|
-moz-osx-font-smoothing: grayscale;
|
||
|
|
height: 100vh;
|
||
|
|
width: 100vw;
|
||
|
|
--el-color-primary: #384388;
|
||
|
|
--background-color: #F2F6FF;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.fill {
|
||
|
|
flex: 1;
|
||
|
|
min-width: 0;
|
||
|
|
min-height: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.color-a2v1c5 {
|
||
|
|
color: #A2B1C5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mar-r30 {
|
||
|
|
margin-right: 30px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pad-w10 {
|
||
|
|
padding: 0 10px;
|
||
|
|
}
|
||
|
|
</style>
|