mayak-common-library 0.0.752 → 0.0.753
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 +1 -1
- package/styles/common.scss +4 -0
package/package.json
CHANGED
package/styles/common.scss
CHANGED
|
@@ -22,6 +22,7 @@ $filterColorGold: invert(5%) sepia(22%) saturate(331%) hue-rotate(346deg) bright
|
|
|
22
22
|
$filterColorGold2: invert(64%) sepia(5%) saturate(2284%) hue-rotate(358deg) brightness(81%) contrast(87%);
|
|
23
23
|
$filterColorDark: invert(18%) sepia(13%) saturate(19%) hue-rotate(5deg) brightness(60%) contrast(90%);
|
|
24
24
|
$filterColorGray: invert(50%) sepia(10%) saturate(17%) hue-rotate(354deg) brightness(89%) contrast(90%);
|
|
25
|
+
$filterColorWhite: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
|
|
25
26
|
|
|
26
27
|
// fonts
|
|
27
28
|
@mixin fontRock {
|
|
@@ -322,6 +323,9 @@ $screen-xl: 1536px;
|
|
|
322
323
|
.filter-gold {
|
|
323
324
|
filter: $filterColorGold;
|
|
324
325
|
}
|
|
326
|
+
.filter-white{
|
|
327
|
+
filter: $filterColorWhite;
|
|
328
|
+
}
|
|
325
329
|
|
|
326
330
|
.filter-gray {
|
|
327
331
|
filter: $filterColorGray;
|