🎨 (app) to kebab-case

This commit is contained in:
Julien Calixte
2022-11-20 12:09:54 +01:00
parent aa12bb432c
commit 9c3216099d
4 changed files with 1 additions and 8 deletions

View File

@@ -0,0 +1,31 @@
<script setup lang="ts"></script>
<template>
<header class="app-header">
<div class="wrapper">
<router-link to="/" class="logo">
<julien-calixte size="big" />
</router-link>
</div>
</header>
</template>
<style scoped lang="scss">
/* #nav a.router-link-exact-active {
background-color: var(--color-text);
} */
.app-header {
padding: 0 1rem;
.wrapper {
display: flex;
align-items: center;
gap: 2rem;
.logo {
text-decoration: none;
}
}
}
</style>