mirror of
https://github.com/NotXia/notxia.github.io.git
synced 2026-08-05 21:32:23 +00:00
19 lines
556 B
Vue
19 lines
556 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 relative mx-auto pb-8 md:px-8 min-h-screen min-w-screen">
|
|
<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> |