summaryrefslogtreecommitdiffstats
path: root/src/scopes/_blockquotes.vars.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/scopes/_blockquotes.vars.scss')
-rw-r--r--src/scopes/_blockquotes.vars.scss29
1 files changed, 8 insertions, 21 deletions
diff --git a/src/scopes/_blockquotes.vars.scss b/src/scopes/_blockquotes.vars.scss
index 117b4a6..63c40b0 100644
--- a/src/scopes/_blockquotes.vars.scss
+++ b/src/scopes/_blockquotes.vars.scss
@@ -1,24 +1,11 @@
1@use "pkg:iro-sass/props"; 1@use 'pkg:iro-sass/src/props';
2@use "../core.vars" as core; 2@use '../core.vars' as core;
3@use "./implicit.vars" as implicit; 3@use './implicit.vars' as implicit;
4 4
5$indent: props.def(--s-blockquotes--indent, props.get(core.$list--indent)) !default; 5$indent: props.def(--s-blockquotes--indent, props.get(core.$list--indent)) !default;
6$margin-bs: props.def( 6$margin-bs: props.def(--s-blockquotes--margin-bs, props.get(implicit.$paragraph--margin-bs)) !default;
7 --s-blockquotes--margin-bs, 7$border-width: props.def(--s-blockquotes--border-width, props.get(core.$border-width--thick)) !default;
8 props.get(implicit.$paragraph--margin-bs)
9) !default;
10$border-width: props.def(
11 --s-blockquotes--border-width,
12 props.get(core.$border-width--thick)
13) !default;
14 8
15$compact--indent: props.def( 9$compact--indent: props.def(--s-blockquotes--compact--indent, props.get(core.$list--compact-indent)) !default;
16 --s-blockquotes--compact--indent,
17 props.get(core.$list--compact-indent)
18) !default;
19 10
20$border-color: props.def( 11$border-color: props.def(--s-blockquotes--border-color, props.get(core.$theme, --border), 'color') !default;
21 --s-blockquotes--border-color,
22 props.get(core.$theme, --border),
23 "color"
24) !default;