💄 (card) smaller h1

This commit is contained in:
Julien Calixte
2023-07-08 18:18:40 +02:00
parent c816721367
commit 558d00d703
2 changed files with 14 additions and 17 deletions

View File

@@ -1,21 +1,13 @@
<script lang="ts" setup>
import { useGitHubLogin } from '@/hooks/useGitHubLogin.hook'
const { isReady } = useGitHubLogin()
</script>
<template>
<router-view v-if="isReady" class="app" />
</template>
<script lang="ts">
import { useGitHubLogin } from '@/hooks/useGitHubLogin.hook'
import { defineComponent } from 'vue'
export default defineComponent({
name: 'App',
setup() {
const { isReady } = useGitHubLogin()
return { isReady }
}
})
</script>
<style lang="scss">
@import 'styles/app';
</style>