diff --git a/components/animate/KeyframeProperties.tsx b/components/animate/KeyframeProperties.tsx index c74eb23..7bf9e6c 100644 --- a/components/animate/KeyframeProperties.tsx +++ b/components/animate/KeyframeProperties.tsx @@ -29,7 +29,9 @@ function SliderRow({ label, unit, value, min, max, step = 1, onChange }: SliderR return (
- + onChange(v)} />
-
- onChange(Number(e.target.value))} - className="w-16 text-xs px-1.5 h-7" - /> - {unit && {unit}} -
+ onChange(Number(e.target.value))} + className="w-16 text-xs px-1.5 h-7 mt-4" + />
); }