You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix layout shift caused by @layer in non-Tailwind CSS file: @layer utilities { .site-word { ... } } in layers/ui/app/assets/css/ui.css was loaded via Nuxt's css: [] array, bypassing Tailwind 4's compiler. The browser processed this as a separate cascade layer declaration, triggering a style recalculation after initial paint — visible as a layout shift on every page load. Replaced with a plain .site-word {} selector, eliminating the rogue cascade layer and the shift.