From 3118d969c61da07094aa43c3a7f17867f8ea3714 Mon Sep 17 00:00:00 2001 From: Markury Date: Sun, 5 Oct 2025 01:40:14 -0400 Subject: [PATCH] refctor(ui): make tabs layout consistent with the rest of the app in settings and queue --- src/routes/downloads/+page.svelte | 120 ++++++++++++++++++++++-------- src/routes/settings/+page.svelte | 87 ++++++++++++++-------- 2 files changed, 145 insertions(+), 62 deletions(-) diff --git a/src/routes/downloads/+page.svelte b/src/routes/downloads/+page.svelte index f8af7a6..d3937dd 100644 --- a/src/routes/downloads/+page.svelte +++ b/src/routes/downloads/+page.svelte @@ -42,24 +42,39 @@ } -
-
-

Downloads

-
- -
-
+
+

Downloads

- {#if queueItems.length === 0} -
-

No downloads in queue

-

Add tracks, albums, or playlists from services to start downloading

-
- {:else} -
- +
+ + +
  • + +
  • +
    + +
    +
    +
    +

    {queueItems.length} item{queueItems.length !== 1 ? 's' : ''} in queue

    +
    + +
    +
    + + {#if queueItems.length === 0} +
    +

    No downloads in queue

    +

    Add tracks, albums, or playlists from services to start downloading

    +
    + {:else} +
    +
    @@ -97,28 +112,62 @@ {/each} -
    Title
    + +
    + {/if} +
    - {/if} +