loki
loki copied to clipboard
Fix: Missing closing curly brace in `tailwind.config.js`
The extend property inside the theme object in tailwind.config.js is missing a closing curly brace. This will cause the tailwind configuration to fail and styles won't be applied correctly.
Fix: --- a/pkg\ui\frontend\tailwind.config.js +++ b/pkg\ui\frontend\tailwind.config.js @@ -31,7 +31,7 @@ } }, extend: {
-
keyframes: {
-
keyframes: { 'accordion-down': { from: { height: 0
@@ -128,5 +128,5 @@ } } },
- plugins: [require("tailwindcss-animate")],
- plugins: [require("tailwindcss-animate")], };