20 lines
310 B
Vue
20 lines
310 B
Vue
<template>
|
|
<div class="min-h-100vh w-100vw text-light-900 overflow-x-hidden">
|
|
<NuxtPage/>
|
|
</div>
|
|
</template>
|
|
|
|
<style module>
|
|
html, body {
|
|
background: #070707;
|
|
overflow-x: hidden;
|
|
width: 100vw;
|
|
min-height: 100vh;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
export default {
|
|
name: "App"
|
|
}
|
|
</script>
|