this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 31 lines 501 B view raw
1<script setup lang="ts"></script> 2 3<template> 4 <header class="app-header"> 5 <div class="wrapper"> 6 <router-link to="/" class="logo"> 7 <toucan-icon /> 8 </router-link> 9 </div> 10 </header> 11</template> 12 13<style scoped lang="scss"> 14/* #nav a.router-link-exact-active { 15 background-color: var(--color-text); 16} */ 17 18.app-header { 19 padding: 0.2rem; 20 21 .wrapper { 22 display: flex; 23 align-items: center; 24 gap: 2rem; 25 26 .logo { 27 text-decoration: none; 28 } 29 } 30} 31</style>