blob: 216bb89bd1b65acd5cd7649db40cbb8179a80ba7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
@include namespace('badge') {
@include store((
--colors: (
--fg: prop(--colors --bg-hi, $global: true),
--bg: prop(--colors --fg-lo, $global: true),
),
--dims: (
--pad-x: .6em,
--pad-y: .2em
)
));
@include object(namespace()) {
display: inline-block;
padding: prop(--dims --pad-y) prop(--dims --pad-x);
background-color: prop(--colors --bg);
color: prop(--colors --fg);
font-size: iro-px-to-rem(14px);
&::selection {
background-color: prop(--colors --select --inverted --bg, $global: true);
color: prop(--colors --select --inverted --fg, $global: true);
}
}
}
|