File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ useHead({
56
56
57
57
/* TODO: Weird that this border-color is ignored by Unocss. Might need to investigate further. */
58
58
* {
59
- border-color : hsl (var (--border )) !important ;
59
+ border-color : hsl (var (--border ));
60
60
}
61
61
62
62
@media (prefers-color-scheme : light) {
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ watch(() => route.path, () => {
22
22
}
23
23
}
24
24
})
25
- console .log (breadcrumbs .value )
26
25
}, { immediate: true })
27
26
</script >
28
27
Original file line number Diff line number Diff line change @@ -194,7 +194,9 @@ const sidebarData = ref({
194
194
<SidebarMenuSubItem
195
195
v-for =" subItem in item.items"
196
196
:key =" subItem.title"
197
+ class =" flex items-center"
197
198
>
199
+ <div v-if =" $route.path === subItem.url" class =" border-text mr-2 h-4 w-1 border-l-2 border-foreground rounded -ml-3" />
198
200
<SidebarMenuSubButton as-child >
199
201
<NuxtLink :href =" subItem.url" >
200
202
<span >{{ subItem.title }}</span >
You can’t perform that action at this time.
0 commit comments