Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -1062,7 +1062,10 @@
{/if}

{#if omniState.kind === "batch"}
<BatchDownload count={omniState.urls.length} onDownload={handleBatchDownload} />
<div class="batch-options">
<DownloadModeSelector bind:downloadMode />
<BatchDownload count={omniState.urls.length} onDownload={handleBatchDownload} />
</div>

{:else if omniState.kind === "searching"}
<div class="feedback feedback-enter">
Expand Down Expand Up @@ -1417,6 +1420,12 @@
}
}

.batch-options {
display: flex;
flex-direction: column;
gap: var(--padding);
}

.feedback {
display: flex;
align-items: center;
Expand Down Expand Up @@ -2000,4 +2009,4 @@
animation: none;
}
}
</style>
</style>
Loading