@erpsquad/common 1.7.0 → 1.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,10 +2,13 @@
2
2
  // All imports are now managed in ../index.ts for better control over CSS cascade order.
3
3
  //
4
4
  // The order in index.ts is:
5
- // 1. normalize.css (third-party reset)
6
- // 2. Base styles (variables, mixins, animations)
7
- // 3. Component styles
8
- // 4. Utility classes (highest priority)
5
+ // 1. Base styles (variables, mixins, animations, reset)
6
+ // 2. Component styles (custom component SCSS)
7
+ // 3. Utility classes (highest priority with !important)
8
+ //
9
+ // Note: normalize.css is NOT imported to avoid conflicts with MUI's CssBaseline.
10
+ // MUI injects its styles dynamically via Emotion, which can override static CSS.
11
+ // Our component styles use increased specificity to override MUI when needed.
9
12
  //
10
13
  // This empty file is kept for backwards compatibility.
11
14