From 9eea9cbe6d64c0177b2806d3d30d40677e56eaa3 Mon Sep 17 00:00:00 2001 From: Kunthawat Greethong Date: Sat, 13 Jun 2026 17:45:01 +0700 Subject: [PATCH] feat(layout): import fx-system alongside global.css MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fx-system.css is v7-5's .fx-* design system. global.css continues to serve the legacy bento components (still used by /about, /services, /contact, /faq, /blog). No collision because all v7-5 classes are prefixed .fx-*. No visual change yet — components not wired yet. Refs: .hermes/plans/2026-06-13_124000-moreminimore-v7-5-migration.md Task 1.2 --- src/layouts/Base.astro | 1 + 1 file changed, 1 insertion(+) diff --git a/src/layouts/Base.astro b/src/layouts/Base.astro index 5afade2..788c89c 100644 --- a/src/layouts/Base.astro +++ b/src/layouts/Base.astro @@ -1,5 +1,6 @@ --- import "../styles/global.css"; +import "../styles/fx-system.css"; interface Props { title: string;