blob: 936932dfb7994f7341a9ce50c5264d8be13d197f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
@use "pkg:iro-sass/props";
@use "../core.vars" as core;
$pad-b: props.def(--o-figure--pad-b, props.get(core.$size--100)) !default;
$border-width: props.def(--o-figure--border-width, props.get(core.$border-width--thin)) !default;
$font-size: props.def(--o-figure--font-size, props.get(core.$font-size--100)) !default;
$text-color: props.def(
--o-figure--text-color,
props.get(core.$theme, --text-mute-more),
"color"
) !default;
$border-color: props.def(
--o-figure--border-color,
props.get(core.$theme, --border),
"color"
) !default;
|