Files
astra-frontend/src/App.vue
2023-03-21 18:18:15 +03:00

37 lines
670 B
Vue

<template lang="pug">
router-view
</template>
<script>
export default {
name: "App",
};
</script>
<style lang="sass">
html
::-webkit-scrollbar
width: 8px
height: 8px
::-webkit-scrollbar-track
border-radius: 4px
background-color: var(--bg-ligth-blue-color)
::-webkit-scrollbar-thumb
background-color: var(--bg-aqua-blue)
border-radius: 4px
#app
font-feature-settings: 'pnum' on, 'lnum' on
-webkit-font-smoothing: antialiased
-moz-osx-font-smoothing: grayscale
height: 100%
width: 100%
line-height: normal
body
background-color: var(--bg-body-color)
margin: 0
padding: 0
.flex
flex-wrap: nowrap !important
</style>