blob: 117b4a6c4d7ec27112de5172bf6497259041c345 (
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
|
@use "pkg:iro-sass/props";
@use "../core.vars" as core;
@use "./implicit.vars" as implicit;
$indent: props.def(--s-blockquotes--indent, props.get(core.$list--indent)) !default;
$margin-bs: props.def(
--s-blockquotes--margin-bs,
props.get(implicit.$paragraph--margin-bs)
) !default;
$border-width: props.def(
--s-blockquotes--border-width,
props.get(core.$border-width--thick)
) !default;
$compact--indent: props.def(
--s-blockquotes--compact--indent,
props.get(core.$list--compact-indent)
) !default;
$border-color: props.def(
--s-blockquotes--border-color,
props.get(core.$theme, --border),
"color"
) !default;
|