public/app.vue

32 lines
366 B
Vue
Raw Normal View History

2022-07-21 16:50:03 -04:00
<template>
2022-07-21 22:03:35 -04:00
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
2022-07-21 16:50:03 -04:00
</template>
2022-07-21 22:03:35 -04:00
<style>
* {
box-sizing: border-box;
/* for that cool wave dark mode effect */
z-index: 1;
position: relative;
}
html,
body,
div#__nuxt {
height: 100%;
width: 100%;
}
:root {
--text-color: #243746;
--bg: #f1e7d0;
}
.dark {
--text-color: #ebf4f1;
--bg: #091a28;
}
</style>