berrypod/assets/css/admin/reset.css
jamey a78a1db847 fix admin font loading and theme CSS cache miss bug
add system font stack to admin reset CSS so setup/admin pages render
sans-serif on all devices instead of falling through to browser default.
pass path_resolver to CSSGenerator.generate on cache miss paths so
font URLs resolve to digested paths in production.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-20 18:39:41 +00:00

21 lines
436 B
CSS

/* Minimal resets for admin pages */
*, *::before, *::after {
box-sizing: border-box;
}
body {
margin: 0;
font-family: system-ui, -apple-system, sans-serif;
}
/* Make LiveView wrapper divs transparent for layout */
[data-phx-session], [data-phx-teleported-src] {
display: contents;
}
/* Phoenix LiveView loading states */
.phx-no-feedback.phx-no-feedback {
/* Suppress validation styles until form is interacted with */
}