sit-onyx 1.0.0-beta.89 → 1.0.0-beta.90

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sit-onyx",
3
3
  "description": "A design system and Vue.js component library created by Schwarz IT",
4
- "version": "1.0.0-beta.89",
4
+ "version": "1.0.0-beta.90",
5
5
  "type": "module",
6
6
  "author": "Schwarz IT KG",
7
7
  "license": "Apache-2.0",
@@ -1,10 +1,4 @@
1
- @use "normalize.scss";
2
-
3
1
  @mixin component() {
4
- @layer onyx.reset {
5
- @include normalize.apply;
6
- }
7
-
8
2
  @layer onyx.component {
9
3
  @content;
10
4
  }
@@ -1,3 +1,5 @@
1
+ @use "./mixins/normalize.scss";
2
+
1
3
  @layer onyx.utility {
2
4
  :root {
3
5
  --onyx-font-family: "Source Sans 3 Variable", sans-serif;
@@ -39,3 +41,9 @@
39
41
  --onyx-color-backdrop: rgba(0, 0, 0, 0.6);
40
42
  }
41
43
  }
44
+
45
+ @layer onyx.reset {
46
+ .onyx-component {
47
+ @include normalize.apply;
48
+ }
49
+ }