mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
18 lines
491 B
SCSS
18 lines
491 B
SCSS
// Global styles entry point - Material Design 3
|
|
// Import order matters: theme → variables → mixins → atoms → global
|
|
|
|
// 1. M3 Theme - generates all --mat-sys-* CSS custom properties
|
|
@use '../scss/theme';
|
|
|
|
// 2. Legacy variable aliases - maps old vars to M3 tokens for backward compatibility
|
|
@use 'variables';
|
|
|
|
// 3. Mixins - reusable patterns using M3 tokens
|
|
@use 'mixins' as *;
|
|
|
|
// 4. Atoms - atomic component styles
|
|
@use 'atoms';
|
|
|
|
// 5. Global utilities and reset
|
|
@use 'global';
|