notes search

This commit is contained in:
2023-04-29 14:56:48 +02:00
parent 1d6826e255
commit 4cc7c01365
8 changed files with 87 additions and 27 deletions

View File

@@ -28,10 +28,10 @@ const activeViewMode = ref(viewModes[0])
class="mt-[50px] px-3 py-6"
/>
<main
class="transition[margin-left] absolute bottom-0 right-0 top-[50px] flex-1 overflow-auto border-x-[1px] bg-white px-10 py-6 duration-200 ease-out"
class="transition[margin-left] absolute bottom-0 left-0 right-0 top-[50px] flex overflow-auto border-x-[1px] bg-white px-10 py-6 duration-200 ease-out"
:class="sideBarCollapsed ? 'ml-0' : 'ml-sidebar'"
>
<Note v-if="activeNote" :note="activeNote" />
<Note v-if="activeNote" :note="activeNote" class="w-full" />
</main>
</div>
</template>