mirror of
https://github.com/kmc7468/arkvault.git
synced 2025-12-16 06:58:46 +00:00
디렉터리 페이지에서, 항목이 많을 때 레이아웃이 깨지던 버그 수정
This commit is contained in:
@@ -57,7 +57,7 @@
|
||||
<title>파일</title>
|
||||
</svelte:head>
|
||||
|
||||
<div class="relative flex h-full flex-col px-4">
|
||||
<div class="px-4">
|
||||
{#if data.id !== "root"}
|
||||
{#if !metadata}
|
||||
<TopBar />
|
||||
@@ -69,8 +69,7 @@
|
||||
{/await}
|
||||
{/if}
|
||||
{/if}
|
||||
|
||||
<div class="mt-4">
|
||||
<div class="my-4 pb-[4.5rem]">
|
||||
{#if subDirectories}
|
||||
{#await subDirectories then subDirectories}
|
||||
{#each subDirectories as { id, name }}
|
||||
@@ -79,15 +78,15 @@
|
||||
{/await}
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<FloatingButton
|
||||
icon={IconAdd}
|
||||
onclick={() => {
|
||||
isCreateBottomSheetOpen = true;
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<FloatingButton
|
||||
icon={IconAdd}
|
||||
onclick={() => {
|
||||
isCreateBottomSheetOpen = true;
|
||||
}}
|
||||
/>
|
||||
|
||||
<CreateBottomSheet
|
||||
bind:isOpen={isCreateBottomSheetOpen}
|
||||
onDirectoryCreate={() => {
|
||||
|
||||
Reference in New Issue
Block a user