Files
remanso/src/App.vue
Julien Calixte 9571752f26 Feat/migrate to daisy (#10)
* feat: init daisyui!

* feat: change theme and colors

* change dark theme and add colors
2024-12-21 20:05:37 +01:00

23 lines
401 B
Vue

<script lang="ts" setup>
import NewVersion from '@/components/NewVersion.vue'
import { useGitHubLogin } from '@/hooks/useGitHubLogin.hook'
const { isReady } = useGitHubLogin()
</script>
<template>
<div id="main-app" class="prose">
<router-view v-if="isReady" />
<new-version />
</div>
</template>
<style lang="scss">
#main-app {
height: 100vh;
display: flex;
flex: 1;
}
</style>