1
0
mirror of https://github.com/elk-zone/elk synced 2024-11-27 22:38:11 +09:00
elk/app.vue

37 lines
473 B
Vue
Raw Normal View History

2022-11-13 14:34:43 +09:00
<script setup>
useHead({
2022-11-14 01:05:32 +09:00
title: 'Nuxtodon',
2022-11-13 14:34:43 +09:00
link: [
{
rel: 'icon', type: 'image/png', href: '/nuxt.png',
},
],
})
2022-11-23 11:16:31 +09:00
// eslint-disable-next-line no-unused-expressions
isDark.value
2022-11-13 14:34:43 +09:00
</script>
<template>
2022-11-23 07:47:25 +09:00
<NuxtLoadingIndicator />
2022-11-13 14:34:43 +09:00
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>
<style>
html, body , #__nuxt{
height: 100vh;
margin: 0;
padding: 0;
}
html.dark {
2022-11-23 11:16:31 +09:00
color-scheme: dark;
}
html {
--at-apply: bg-base text-base;
2022-11-13 14:34:43 +09:00
}
</style>