@snyk-mktg/brand-ui 2.3.14 → 2.3.15
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.
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
@use '../../base/variables/typography' as *;
|
|
5
5
|
@use '../../base/variables/icons' as *;
|
|
6
6
|
@use '../../base/variables/effects' as *;
|
|
7
|
+
@use '../../base/variables/colors' as *;
|
|
7
8
|
@use '../../base/mixins/color-mode' as color;
|
|
8
9
|
@use '../../base/mixins/glass' as glass;
|
|
9
10
|
@use '../../base/mixins/typography' as font;
|
|
@@ -196,6 +197,46 @@
|
|
|
196
197
|
pointer-events: none;
|
|
197
198
|
}
|
|
198
199
|
}
|
|
200
|
+
|
|
201
|
+
.new-evo-feature {
|
|
202
|
+
@include color.gradient-mode(
|
|
203
|
+
'background',
|
|
204
|
+
'linear',
|
|
205
|
+
'140deg',
|
|
206
|
+
map.get($evoui-colors, 'orange'),
|
|
207
|
+
map.get($evoui-colors, 'pink'),
|
|
208
|
+
map.get($evoui-colors, 'orange'),
|
|
209
|
+
map.get($evoui-colors, 'pink')
|
|
210
|
+
) {
|
|
211
|
+
-webkit-background-clip: text;
|
|
212
|
+
-webkit-text-fill-color: transparent;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
&-tag {
|
|
216
|
+
position: absolute;
|
|
217
|
+
top: 0;
|
|
218
|
+
right: -10px;
|
|
219
|
+
font-size: 9px;
|
|
220
|
+
border-radius: map.get($brandui-padding, thin);
|
|
221
|
+
padding: map.get($brandui-padding, thin);
|
|
222
|
+
@include color.gradient-mode(
|
|
223
|
+
'background',
|
|
224
|
+
'linear',
|
|
225
|
+
'140deg',
|
|
226
|
+
map.get($evoui-colors, 'orange'),
|
|
227
|
+
map.get($evoui-colors, 'pink'),
|
|
228
|
+
map.get($evoui-colors, 'orange'),
|
|
229
|
+
map.get($evoui-colors, 'pink')
|
|
230
|
+
);
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
&:hover,
|
|
235
|
+
&:focus {
|
|
236
|
+
.new-evo-feature-tag {
|
|
237
|
+
color: brandui-color-labels(neutral-5);
|
|
238
|
+
}
|
|
239
|
+
}
|
|
199
240
|
}
|
|
200
241
|
}
|
|
201
242
|
|