Fix left column nav bar

This commit is contained in:
Peaceultime 2024-07-29 16:03:45 +02:00
parent 3c2548cd90
commit ec0feb909c
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
<div class="tree-item-children"> <div class="tree-item-children">
<NuxtLink class="site-nav-bar-text desktop-hidden" aria-label="Systeme" :href="'/explorer'" <NuxtLink class="site-nav-bar-text desktop-hidden" aria-label="Systeme" :href="'/explorer'"
:class="{'mod-active': $route.path.startsWith('/explorer')}">Systeme</NuxtLink> :class="{'mod-active': $route.path.startsWith('/explorer')}">Systeme</NuxtLink>
<ContentNavigation v-if="$route.path.startsWith('/explorer')" v-slot="{ navigation }" queryContent="/"> <ContentNavigation :class="{'hidden': !$route.path.startsWith('/explorer')}" v-slot="{ navigation }" queryContent="/">
<NavigationLink v-if="!!navigation" v-for="link of navigation.filter(e => !['/tags', '/'].includes(e?._path ?? ''))" :link="link" /> <NavigationLink v-if="!!navigation" v-for="link of navigation.filter(e => !['/tags', '/'].includes(e?._path ?? ''))" :link="link" />
</ContentNavigation> </ContentNavigation>
<NuxtLink class="site-nav-bar-text desktop-hidden" aria-label="Outils" :href="'/tools'" <NuxtLink class="site-nav-bar-text desktop-hidden" aria-label="Outils" :href="'/tools'"

View File

@ -16,7 +16,7 @@ const { data } = useAuth();
<div class="render-container"> <div class="render-container">
<div class="not-found-container"> <div class="not-found-container">
<ThemeIcon icon="logo" :width=128 :height=128 /> <ThemeIcon icon="logo" :width=128 :height=128 />
<div class="not-found-title">Coucou {{ data?.username }} :) :) :) :)</div> <div class="not-found-title">Work in prorgess</div>
</div> </div>
</div> </div>
</div> </div>