default.vue
332 Bytes
<template>
<v-app dark id="main-container">
<nuxt />
</v-app>
</template>
<script>
export default {
data() {
return {
}
}
}
</script>
<style lang="scss" >
#main-container {
background-color: $background-black;
}
.toolbar-grey {
background-color: $toolbar-grey;
}
</style>