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> </script>
<template> <template>
<router-view v-if="isReady" /> <div id="main-app">
<new-version /> <router-view v-if="isReady" />
<new-version />
</div>
</template> </template>
<style lang="scss"> <style lang="scss">
@import 'styles/app'; @import 'styles/app';
#main-app {
height: 100vh;
display: flex;
flex: 1;
}
</style> </style>

View File

@@ -1,7 +1,7 @@
<template> <template>
<div class="login-github"> <div class="login-github">
<br /> <br />
<a ;href="url" target="_blank" rel="noopener noreferrer"> <a :href="url.toString()" target="_blank" rel="noopener noreferrer">
login to login to
<img src="@/assets/icons/github.svg" alt="GitHub icon" /> <img src="@/assets/icons/github.svg" alt="GitHub icon" />
</a> </a>
@@ -25,8 +25,3 @@ export default defineComponent({
} }
}) })
</script> </script>
<style lang="scss" scoped>
.login-github {
}
</style>