diff --git a/components/animate/AnimationSettings.tsx b/components/animate/AnimationSettings.tsx index 6ec20bd..56a840f 100644 --- a/components/animate/AnimationSettings.tsx +++ b/components/animate/AnimationSettings.tsx @@ -81,7 +81,7 @@ export function AnimationSettings({ config, onChange }: Props) { step={50} value={config.duration} onChange={(e) => set('duration', Math.max(50, Number(e.target.value)))} - className="text-xs" + /> ms @@ -96,7 +96,7 @@ export function AnimationSettings({ config, onChange }: Props) { step={50} value={config.delay} onChange={(e) => set('delay', Math.max(0, Number(e.target.value)))} - className="text-xs" + /> ms @@ -116,12 +116,12 @@ export function AnimationSettings({ config, onChange }: Props) { } }} > - + {EASINGS.map((e) => ( - + {e.label} ))} @@ -183,14 +183,14 @@ export function AnimationSettings({ config, onChange }: Props) {
@@ -199,14 +199,14 @@ export function AnimationSettings({ config, onChange }: Props) {