mayak-common-library 0.0.841 → 0.0.842
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 +3 -3
- package/tailwind.config.js +4 -0
package/package.json
CHANGED
package/styles/common.scss
CHANGED
|
@@ -327,9 +327,9 @@ $screen-xl: 1536px;
|
|
|
327
327
|
.filter-beige {
|
|
328
328
|
filter: $filterColorBeige;
|
|
329
329
|
}
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
}
|
|
330
|
+
//.filter-white{
|
|
331
|
+
// filter: $filterColorWhite;
|
|
332
|
+
//}
|
|
333
333
|
.filter-gray {
|
|
334
334
|
filter: $filterColorGray;
|
|
335
335
|
}
|
package/tailwind.config.js
CHANGED
|
@@ -169,6 +169,10 @@ module.exports = {
|
|
|
169
169
|
filter:
|
|
170
170
|
'invert(18%) sepia(13%) saturate(19%) hue-rotate(5deg) brightness(60%) contrast(90%)',
|
|
171
171
|
},
|
|
172
|
+
'.filter-white': {
|
|
173
|
+
filter:
|
|
174
|
+
'brightness(0) saturate(100%) invert(95%) sepia(5%) saturate(0%) hue-rotate(92deg) brightness(106%) contrast(107%)',
|
|
175
|
+
},
|
|
172
176
|
})
|
|
173
177
|
},
|
|
174
178
|
],
|