add CSS migration foundation and screenshot tooling (Phase 0)
- CSS file structure with @layer declaration (reset, layout, components, utilities, overrides)
- Layout primitives: .stack, .cluster, .row, .auto-grid, .container-page, .with-sidebar, .center
- mix screenshots task using Playwright for visual regression testing
- Golden baseline captured (10 pages x 4 breakpoints = 40 screenshots)
- No visual changes — new CSS not wired into any layout yet
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-16 23:37:29 +00:00
|
|
|
/* 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";
|
|
|
|
|
|
2026-02-16 23:45:13 +00:00
|
|
|
/* 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. */
|
add CSS migration foundation and screenshot tooling (Phase 0)
- CSS file structure with @layer declaration (reset, layout, components, utilities, overrides)
- Layout primitives: .stack, .cluster, .row, .auto-grid, .container-page, .with-sidebar, .center
- mix screenshots task using Playwright for visual regression testing
- Golden baseline captured (10 pages x 4 breakpoints = 40 screenshots)
- No visual changes — new CSS not wired into any layout yet
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-16 23:37:29 +00:00
|
|
|
|
|
|
|
|
@import "./shop/components.css";
|
|
|
|
|
@import "./shop/layout.css";
|
|
|
|
|
@import "./shop/utilities.css";
|
|
|
|
|
@import "./shop/overrides.css";
|