mayak-common-library 0.0.752 → 0.0.754
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 +10 -2
package/package.json
CHANGED
package/styles/common.scss
CHANGED
|
@@ -22,6 +22,8 @@ $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%);
|
|
26
|
+
$filterColorBeige: invert(89%) sepia(12%) saturate(300%) hue-rotate(20deg) brightness(95%) contrast(90%);
|
|
25
27
|
|
|
26
28
|
// fonts
|
|
27
29
|
@mixin fontRock {
|
|
@@ -322,15 +324,21 @@ $screen-xl: 1536px;
|
|
|
322
324
|
.filter-gold {
|
|
323
325
|
filter: $filterColorGold;
|
|
324
326
|
}
|
|
325
|
-
|
|
327
|
+
.filter-beige {
|
|
328
|
+
filter: $filterColorBeige;
|
|
329
|
+
}
|
|
330
|
+
.filter-white{
|
|
331
|
+
filter: $filterColorWhite;
|
|
332
|
+
}
|
|
326
333
|
.filter-gray {
|
|
327
334
|
filter: $filterColorGray;
|
|
328
335
|
}
|
|
329
|
-
|
|
330
336
|
.filter-dark {
|
|
331
337
|
filter: $filterColorDark;
|
|
332
338
|
}
|
|
333
339
|
|
|
340
|
+
|
|
341
|
+
|
|
334
342
|
.trim-2 {
|
|
335
343
|
display: -webkit-box;
|
|
336
344
|
-webkit-box-orient: vertical;
|