🎨 (app) to kebab-case
This commit is contained in:
31
src/components/app-header.vue
Normal file
31
src/components/app-header.vue
Normal 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>
|
||||
Reference in New Issue
Block a user