blob: 1879ea97cd6a91c85b5058320cd6b3f90fa92c6d (
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
|
@include namespace('note') {
@include store((
--colors: (
--fg: prop(--colors --accent --strong, $global: true),
--bg: prop(--colors --accent --faint, $global: true),
),
--dims: (
--pad-x: 1em,
--pad-y: .7em
)
));
@include component(namespace()) {
margin-top: $line-height * 1rem;
padding: prop(--dims --pad-y) prop(--dims --pad-x);
background-color: prop(--colors --bg);
color: prop(--colors --fg);
:first-child {
margin-top: 0;
}
}
}
|