@pisodev/ui-common 0.0.10 → 0.0.12
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/styles.scss +5 -3
- package/package.json +1 -1
package/dist/styles.scss
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
// Unified SCSS entrypoint for @pisodev/ui-common
|
|
2
2
|
// Provides SCSS tokens and injects CSS variables/utility classes
|
|
3
3
|
|
|
4
|
+
@use 'sass:meta';
|
|
5
|
+
|
|
4
6
|
@forward './theme/colors';
|
|
5
7
|
@forward './typography/typography';
|
|
6
8
|
|
|
7
|
-
//
|
|
8
|
-
@
|
|
9
|
-
@
|
|
9
|
+
// Inline CSS files so consumers don't need extra @import
|
|
10
|
+
@include meta.load-css('./theme/colors.css');
|
|
11
|
+
@include meta.load-css('./typography/typography.css');
|