blob: 1076947e0c6d0de7eadf59c667296c890e9efe6b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
@use 'iro-sass/src/props';
@use 'core';
@mixin styles {
.badge, a.badge {
padding-inline: 8px;
border-radius: 10em;
vertical-align: baseline;
&.badgeUpdate {
--background-color: #{props.get(core.$vlpnLink)};
--color: #{props.get(core.$vlpnLinkFg)};
}
&.yellow {
--background-color: #{props.get(core.$theme, --yellow, --800)};
--color: #{props.get(core.$theme, --yellow, --800-text)};
}
}
}
|