You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
704 B
Vue

9 months ago
<template>
<div id="app">
<router-view/>
</div>
</template>
<script>
export default {
name: 'App'
}
</script>
<style lang="less">
@font-face {
font-family: 'NotoSans';
src: url('./assets/font/NotoSans-VariableFont_wdth,wght.ttf') format('truetype');
//src: url('./assets/font/NotoSans-Italic-VariableFont_wdth,wght.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
body {
&::-webkit-scrollbar {
display: none
}
5 days ago
margin: 0;
9 months ago
}
#app {
font-family: 'NotoSans', 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
5 days ago
//margin-top: 60px;
9 months ago
}
</style>