Files
medassist-ng/frontend/src/styles.css
T
Daniel Volz a1c7e0e62c refactor: split frontend styles into layered modules
Split the large frontend shared stylesheet into focused layered CSS partials while preserving the stable global entrypoint and existing specialized stylesheet modules.
2026-03-26 05:36:50 +01:00

13 lines
746 B
CSS

/* biome-ignore-all lint/style/noDescendingSpecificity: shared stylesheet is intentionally composed from legacy cascade-ordered partials */
/* =============================================================================
Global Stylesheet Entrypoint
Loads layered partials in the order required by the existing MedAssist cascade.
Add new shared styles to the focused partial that owns the relevant domain.
============================================================================= */
@import url("./styles/foundation.css");
@import url("./styles/app-surfaces.css");
@import url("./styles/settings-surfaces.css");
@import url("./styles/modal-detail.css");
@import url("./styles/auth-profile.css");
@import url("./styles/about-report.css");