Files
buy-lite/web/src/App.vue

37 lines
487 B
Vue
Raw Normal View History

2023-01-03 11:45:38 +08:00
<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>