fix list view

This commit is contained in:
2023-05-31 21:26:59 +02:00
parent c57d0be562
commit af054ac61c

View File

@@ -30,7 +30,7 @@ const deleteSelectedNotes = (closeModal: () => void) => {
}
</script>
<template>
<div class="flex flex-col gap-2 overflow-x-auto">
<div class="flex flex-col gap-2">
<div class="flex items-center gap-2">
<div class="flex items-center">
<span class="whitespace-nowrap">
@@ -60,6 +60,7 @@ const deleteSelectedNotes = (closeModal: () => void) => {
class="my-1 ml-auto mr-1 max-w-xs flex-grow"
></UIInputText>
</div>
<div class="overflow-x-auto">
<UITable density="compact" class="w-full">
<thead>
<tr>
@@ -102,4 +103,5 @@ const deleteSelectedNotes = (closeModal: () => void) => {
</tbody>
</UITable>
</div>
</div>
</template>