This commit is contained in:
2023-04-29 00:29:25 +02:00
parent 3f9393f09b
commit dc6f10afd8
19 changed files with 1673 additions and 153 deletions

View File

@@ -13,7 +13,10 @@ const emit = defineEmits<{
}>()
</script>
<template>
<div id="sidebar" class="position-relative pe-3 d-flex flex-column">
<div
id="sidebar"
class="relative flex w-sidebar flex-col gap-4 overflow-y-auto px-2 py-3"
>
<SideBarMenu>
<template #header>Root note</template>
<template #items>
@@ -40,10 +43,3 @@ const emit = defineEmits<{
</SideBarMenu>
</div>
</template>
<style lang="scss">
#sidebar {
gap: 1rem;
overflow-y: auto;
width: $sidebar-width;
}
</style>