mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-05 00:19:59 +00:00
39 lines
515 B
Vue
39 lines
515 B
Vue
<script setup>
|
|
import { APP_NAME } from './constants'
|
|
|
|
useHead({
|
|
title: APP_NAME,
|
|
link: [
|
|
{
|
|
rel: 'icon', type: 'image/svg+xml', href: '/logo.svg',
|
|
},
|
|
],
|
|
})
|
|
|
|
// eslint-disable-next-line no-unused-expressions
|
|
isDark.value
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtLoadingIndicator />
|
|
<NuxtLayout>
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
</template>
|
|
|
|
<style>
|
|
html, body , #__nuxt{
|
|
height: 100vh;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
html.dark {
|
|
color-scheme: dark;
|
|
}
|
|
|
|
html {
|
|
--at-apply: bg-base text-base;
|
|
}
|
|
</style>
|