loki icon indicating copy to clipboard operation
loki copied to clipboard

Fix: Missing closing curly brace in `tailwind.config.js`

Open PrinceSajjadHussain opened this issue 5 months ago • 1 comments

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")], };

PrinceSajjadHussain avatar Jun 20 '25 15:06 PrinceSajjadHussain

CLA assistant check
All committers have signed the CLA.

CLAassistant avatar Jun 20 '25 15:06 CLAassistant