diff options
Diffstat (limited to 'src/lib/List')
| -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; } |