💄 (app) add a more specific favicon
This commit is contained in:
16
src/App.vue
16
src/App.vue
@@ -5,11 +5,23 @@ import { RouterLink, RouterView } from 'vue-router'
|
||||
<template>
|
||||
<header>
|
||||
<nav>
|
||||
<router-link class="title is-3" to="/">Loopycode</router-link>
|
||||
<router-link class="title is-3" to="/">
|
||||
<img class="logo" src="/public/loop.png" alt="Loopycode" />
|
||||
</router-link>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<RouterView />
|
||||
</template>
|
||||
|
||||
<style scoped></style>
|
||||
<style scoped>
|
||||
nav {
|
||||
margin: 1rem 0;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
img.logo {
|
||||
max-width: 40px;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user