diff --git a/panda.config.ts b/panda.config.ts index 71de5aba..056b10d5 100644 --- a/panda.config.ts +++ b/panda.config.ts @@ -12,7 +12,15 @@ export default defineConfig({ // Useful for theme customization theme: { - extend: {}, + extend: { + keyframes: { + gradient: { + '0%': { transform: 'rotate(0deg)', backgroundPositionX: '0%', backgroundPositionY: '0%' }, + '50%': { backgroundPositionX: '50%', backgroundPositionY: '100%' }, + '100%': { transform: 'rotate(0deg)', backgroundPositionX: '0%', backgroundPositionY: '0%' }, + }, + }, + }, }, // The output directory for your css system diff --git a/src/app/timer/TimerView.tsx b/src/app/timer/TimerView.tsx index 9c58fdc0..9d5488a3 100644 --- a/src/app/timer/TimerView.tsx +++ b/src/app/timer/TimerView.tsx @@ -12,11 +12,7 @@ export default function TimerView({ category, time, isActive }: Props) {