diff --git a/src/shared/ui/ComboControl/ComboControl.svelte b/src/shared/ui/ComboControl/ComboControl.svelte index 32d2276..9782d36 100644 --- a/src/shared/ui/ComboControl/ComboControl.svelte +++ b/src/shared/ui/ComboControl/ComboControl.svelte @@ -93,7 +93,7 @@ const displayLabel = $derived(label ?? controlLabel ?? ''); step={control.step} orientation="horizontal" /> - + {formattedValue()} @@ -136,7 +136,7 @@ const displayLabel = $derived(label ?? controlLabel ?? ''); {#if displayLabel}
-
+
{label}
{@render children?.()} diff --git a/src/shared/ui/Input/Input.svelte b/src/shared/ui/Input/Input.svelte index c65b185..b8a33ad 100644 --- a/src/shared/ui/Input/Input.svelte +++ b/src/shared/ui/Input/Input.svelte @@ -148,7 +148,7 @@ const inputClasses = $derived(cn( {#if helperText} diff --git a/src/shared/ui/Section/SectionHeader/SectionHeader.svelte b/src/shared/ui/Section/SectionHeader/SectionHeader.svelte index 9e76d42..89e6be5 100644 --- a/src/shared/ui/Section/SectionHeader/SectionHeader.svelte +++ b/src/shared/ui/Section/SectionHeader/SectionHeader.svelte @@ -53,7 +53,7 @@ const indexStr = $derived(String(index).padStart(2, '0'));
{#if subtitle} - + {/if}
diff --git a/src/shared/ui/Slider/Slider.svelte b/src/shared/ui/Slider/Slider.svelte index ce43c28..2b2de67 100644 --- a/src/shared/ui/Slider/Slider.svelte +++ b/src/shared/ui/Slider/Slider.svelte @@ -69,7 +69,7 @@ let { const isVertical = $derived(orientation === 'vertical'); -const labelClasses = `font-mono text-[0.625rem] tabular-nums shrink-0 +const labelClasses = `font-mono text-2xs tabular-nums shrink-0 text-secondary group-hover:text-neutral-700 dark:group-hover:text-neutral-300 transition-colors`;