Files
notxia.github.io/src/App.vue
T
2023-01-19 20:14:31 +01:00

19 lines
535 B
Vue

<template>
<div class="bg-gray-100 text-gray-900 min-h-screen h-full
dark:bg-gray-900 dark:text-slate-50"
style="font-family: 'Comfortaa';">
<div class="container mx-auto pb-8 md:px-8 h-full w-full">
<RouterView />
</div>
</div>
</template>
<script setup lang="ts">
import { onMounted } from "vue";
import { RouterView } from "vue-router";
import { applyTheme } from "./utilities/theme_handler";
onMounted(() => {
applyTheme();
})
</script>