diff --git a/src/shared/ui/Slider/Slider.svelte b/src/shared/ui/Slider/Slider.svelte index d89db16..b03ec6c 100644 --- a/src/shared/ui/Slider/Slider.svelte +++ b/src/shared/ui/Slider/Slider.svelte @@ -54,7 +54,8 @@ let { value = $bindable(), orientation = 'horizontal', class: className, ...rest index={0} class={cn( 'group/thumb relative block', - orientation === 'horizontal' ? '-top-1 w-2 h-2.25' : '-left-1 h-2 w-2.25', + 'size-2', + orientation === 'horizontal' ? '-top-1' : '-left-1', 'rounded-sm', 'bg-foreground', // Glow shadow @@ -64,7 +65,7 @@ let { value = $bindable(), orientation = 'horizontal', class: className, ...rest orientation === 'horizontal' ? 'transition-[height,top,left,box-shadow]' : 'transition-[width,top,left,box-shadow]', // Hover: bigger glow 'hover:shadow-[0_0_10px_rgba(0,0,0,0.5)]', - orientation === 'horizontal' ? 'hover:h-3 hover:-top-[5.5px]' : 'hover:w-3 hover:-left-[5.5px]', + orientation === 'horizontal' ? 'hover:size-3 hover:-top-[5.5px]' : 'hover:size-3 hover:-left-[5.5px]', // Active: smaller glow 'active:shadow-[0_0_4px_rgba(0,0,0,0.3)]', orientation === 'horizontal' ? 'active:h-2.5 active:-top-[4.5px]' : 'active:w-2.5 active:-left-[4.5px]',