Improve slider appearance

Make slider endpoints symmetric and colored.
This commit is contained in:
gpt-engineer-app[bot] 2025-07-21 07:48:44 +00:00
parent 615c43f72a
commit 030c188ab3
3 changed files with 33 additions and 4 deletions

View file

@ -0,0 +1,29 @@
import * as React from "react"
import * as SliderPrimitive from "@radix-ui/react-slider"
import { cn } from "@/lib/utils"
const RangeSlider = React.forwardRef<
React.ElementRef<typeof SliderPrimitive.Root>,
React.ComponentPropsWithoutRef<typeof SliderPrimitive.Root>
>(({ className, ...props }, ref) => (
<SliderPrimitive.Root
ref={ref}
className={cn(
"relative flex w-full touch-none select-none items-center",
className
)}
{...props}
>
<SliderPrimitive.Track className="relative h-2 w-full grow overflow-hidden rounded-full bg-secondary">
<SliderPrimitive.Range className="absolute h-full bg-primary" />
</SliderPrimitive.Track>
{/* First thumb (left/min) - Blue */}
<SliderPrimitive.Thumb className="block h-5 w-5 rounded-full border-2 border-blue-500 bg-blue-500 ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-blue-400 focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50" />
{/* Second thumb (right/max) - Red */}
<SliderPrimitive.Thumb className="block h-5 w-5 rounded-full border-2 border-red-500 bg-red-500 ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-red-400 focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50" />
</SliderPrimitive.Root>
))
RangeSlider.displayName = SliderPrimitive.Root.displayName
export { RangeSlider }