@moises.ai/design-system 3.1.3 → 3.1.4
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.
- package/dist/index.js +1 -1
- package/dist/styles.css +8 -10
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1,12 +1,10 @@
|
|
|
1
|
-
/*
|
|
2
|
-
|
|
3
|
-
* Layers declared first have LOWER priority than layers declared later.
|
|
4
|
-
* Unlayered styles (like CSS modules) always beat layered styles.
|
|
5
|
-
*/
|
|
6
|
-
@layer radix, theme;
|
|
1
|
+
/* Import Radix UI Themes base styles */
|
|
2
|
+
@import '@radix-ui/themes/styles.css';
|
|
7
3
|
|
|
8
|
-
/* Import
|
|
9
|
-
@import '
|
|
4
|
+
/* Import custom theme overrides and colors */
|
|
5
|
+
@import './colors/custom-styles.css';
|
|
10
6
|
|
|
11
|
-
/*
|
|
12
|
-
|
|
7
|
+
/*
|
|
8
|
+
* Any additional global styles or customizations can be added here.
|
|
9
|
+
* These styles will be bundled into the final styles.css file.
|
|
10
|
+
*/
|