Skip to content

v1.7.7

Choose a tag to compare

@kieranmansfield kieranmansfield released this 05 Jun 08:10
· 78 commits to main since this release

Bug Fixes

  • 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.