@20minutes/hela 2.22.5 → 2.22.7
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/components/atoms/IconButton/IconButton.d.ts +1 -1
- package/dist/components/molecules/SocialBar/SocialBar.d.ts +0 -1
- package/dist/index.es.js +897 -896
- package/dist/index.umd.cjs +1 -1
- package/dist/js/scripts.es.js +103 -97
- package/dist/js/scripts.umd.cjs +1 -1
- package/dist/scss/abstracts/mixins/_buttons.scss +9 -0
- package/dist/scss/abstracts/variables/_token-variables.scss +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -99,6 +99,15 @@
|
|
|
99
99
|
--button-hover-background-opacity: 1;
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
+
@mixin button-color-sport {
|
|
103
|
+
--button-scheme-color: #{map.get($token-variables, 'color', 'theme', 'sport')};
|
|
104
|
+
--button-base-background-color: #{map.get($token-variables, 'color', 'theme', 'sport')};
|
|
105
|
+
--button-base-color: #{map.get($token-variables, 'color', 'greyscale', 'white')};
|
|
106
|
+
--button-base-border-color: #{map.get($token-variables, 'color', 'theme', 'sport')};
|
|
107
|
+
--button-hover-background-color: #{map.get($token-variables, 'color', 'theme', 'sport')};
|
|
108
|
+
--button-hover-background-opacity: 1;
|
|
109
|
+
}
|
|
110
|
+
|
|
102
111
|
// ── Variant mixins ──────────────────────────────────────────────────
|
|
103
112
|
// Shared structural overrides consumed by both _button.scss and _icon-button.scss.
|
|
104
113
|
|