From d1031b33425edb57dbaa189a26d3e828afae1c1a Mon Sep 17 00:00:00 2001 From: Gigi Date: Mon, 13 Oct 2025 22:11:44 +0200 Subject: [PATCH] fix: update Tailwind CSS import syntax for v4 - Change from @tailwind directives to @import syntax - Move shimmer keyframes to CSS file (v4 convention) - Fix Tailwind classes not being processed --- src/styles/tailwind.css | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/styles/tailwind.css b/src/styles/tailwind.css index a90f0749..68760475 100644 --- a/src/styles/tailwind.css +++ b/src/styles/tailwind.css @@ -1,4 +1,7 @@ -@tailwind base; -@tailwind components; -@tailwind utilities; +@import "tailwindcss"; + +@keyframes shimmer { + 0% { transform: translateX(-100%); } + 100% { transform: translateX(100%); } +}