파일 업로드/다운로드 현황 페이지에서 TopBar가 고정되어 있지 않던 버그 수정

This commit is contained in:
static
2025-01-19 01:21:52 +09:00
parent 5517d9f811
commit 6018b03523
2 changed files with 4 additions and 4 deletions

View File

@@ -19,9 +19,9 @@
<title>진행 중인 다운로드</title>
</svelte:head>
<div class="flex h-full flex-col">
<div class="flex flex-col">
<TopBar />
<div class="space-y-2">
<div class="space-y-2 pb-4">
{#each downloadingFiles as status}
<File {status} />
{/each}

View File

@@ -19,9 +19,9 @@
<title>진행 중인 업로드</title>
</svelte:head>
<div class="flex h-full flex-col">
<div class="flex flex-col">
<TopBar />
<div class="space-y-2">
<div class="space-y-2 pb-4">
{#each uploadingFiles as status}
<File {status} />
{/each}