fix github href

This commit is contained in:
Julien Calixte
2023-08-06 22:16:57 +02:00
parent 553023078c
commit afc850a0b3
2 changed files with 11 additions and 8 deletions

View File

@@ -6,10 +6,18 @@ const { isReady } = useGitHubLogin()
</script>
<template>
<router-view v-if="isReady" />
<new-version />
<div id="main-app">
<router-view v-if="isReady" />
<new-version />
</div>
</template>
<style lang="scss">
@import 'styles/app';
#main-app {
height: 100vh;
display: flex;
flex: 1;
}
</style>