berrypod/assets/css/shop.css
jamey fcd1b1ce80 wire shop.css alongside Tailwind for CSS migration (Phase 1)
- esbuild profile for shop.css bundling (dev watcher + build aliases)
- shop.css loaded as second stylesheet in shop_root layout
- LiveView display:contents rule in reset layer
- updated Lighthouse + Screenshots tasks for new esbuild target

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-16 23:45:13 +00:00

19 lines
659 B
CSS

/* Shop CSS — hand-written, zero-framework stylesheet.
Layered cascade: later layers beat earlier ones, no !important needed.
This file runs alongside app-shop.css during migration (Phases 1-4).
After Phase 5 it replaces app-shop.css entirely. */
@layer reset, primitives, tokens, components, layout, utilities, overrides;
@import "./shop/reset.css";
/* Theme CSS stays in the existing files (loaded via app-shop.css).
Primitives and tokens will be wrapped in @layer when
app-shop.css is removed in Phase 5. */
@import "./shop/components.css";
@import "./shop/layout.css";
@import "./shop/utilities.css";
@import "./shop/overrides.css";