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