You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
356 B
21 lines
356 B
7 months ago
|
<template>
|
||
|
<div id="app">
|
||
|
<router-view />
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
</script>
|
||
|
<style lang="scss">
|
||
|
#app {
|
||
|
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif !important;
|
||
|
// -webkit-font-smoothing: antialiased;
|
||
|
// -moz-osx-font-smoothing: grayscale;
|
||
|
}
|
||
|
#nprogress .bar {
|
||
|
background: #4b8df8 !important;
|
||
|
}
|
||
|
body {
|
||
|
margin: 0;
|
||
|
}
|
||
|
</style>
|