diff options
| author | Fuwn <[email protected]> | 2026-04-02 10:11:05 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-04-02 10:11:05 +0000 |
| commit | 11eec7f7b5af847337372ae82c01412f55e27ba2 (patch) | |
| tree | 0e98770de36019d2bcae75de2fefcf6bde3ed222 /src | |
| parent | fix(ui): refine media list title counts (diff) | |
| download | due.moe-11eec7f7b5af847337372ae82c01412f55e27ba2.tar.xz due.moe-11eec7f7b5af847337372ae82c01412f55e27ba2.zip | |
fix(ui): align media list title timings
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/List/ListTitle.svelte | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/List/ListTitle.svelte b/src/lib/List/ListTitle.svelte index 58899661..915b0657 100644 --- a/src/lib/List/ListTitle.svelte +++ b/src/lib/List/ListTitle.svelte @@ -24,7 +24,7 @@ export let hideCount = false; duration={Math.min(2500, Math.max(500, Math.abs(count - 0) * 10))} />{/if}{/if} --> {#if !hideTime && $settings.debugShowListTimings} - <small class="opaque">{time ? time.toFixed(3) : '...'}s</small> + <small class="opaque list-title-time">{time ? time.toFixed(3) : '...'}s</small> {/if} <slot /> {#if progress !== undefined} @@ -36,7 +36,8 @@ export let hideCount = false; <style> .list-title-text, - .list-title-count { + .list-title-count, + .list-title-time { vertical-align: middle; } |