From 6085cc05dcb46ae364241eb1a692f53786375a22 Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Mon, 23 Feb 2026 02:56:46 +0100 Subject: [PATCH] fix(ui): Add missing draw-stroke keyframes and restore Tailwind v4 backward compatibility with tailwind.config.cjs --- styles/globals.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/styles/globals.css b/styles/globals.css index da2ac485..2ea95957 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -1,4 +1,5 @@ @import 'tailwindcss'; +@config "../tailwind.config.cjs"; @theme { --font-sans: @@ -46,6 +47,18 @@ --animate-slight-fade-in-from-bottom: slight-fade-in-from-bottom 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; --animate-gradient-x: gradient-x 15s ease infinite; + --animate-draw-stroke: draw-stroke 1.8s ease-in-out 0.5s forwards; + + @keyframes draw-stroke { + from { + stroke-dasharray: 1; + stroke-dashoffset: 1; + } + to { + stroke-dasharray: 1; + stroke-dashoffset: 0; + } + } @keyframes gradient-x { 0%,