diff options
author | Volpeon <git@volpeon.ink> | 2024-11-20 20:46:29 +0100 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2024-11-20 20:46:29 +0100 |
commit | 1601f183fd9e84dd3665b4b8dfef57eb9b1423ac (patch) | |
tree | 53c002cc0b210f17b43a13acd57940e7ae81df77 /src/scopes | |
parent | Update (diff) | |
download | iro-design-1601f183fd9e84dd3665b4b8dfef57eb9b1423ac.tar.gz iro-design-1601f183fd9e84dd3665b4b8dfef57eb9b1423ac.tar.bz2 iro-design-1601f183fd9e84dd3665b4b8dfef57eb9b1423ac.zip |
Implicit style fixes
Diffstat (limited to 'src/scopes')
-rw-r--r-- | src/scopes/_blockquotes.scss | 2 | ||||
-rw-r--r-- | src/scopes/_blockquotes.vars.scss | 4 | ||||
-rw-r--r-- | src/scopes/_body.scss | 8 | ||||
-rw-r--r-- | src/scopes/_code.vars.scss | 4 | ||||
-rw-r--r-- | src/scopes/_lists.vars.scss | 4 | ||||
-rw-r--r-- | src/scopes/_tables.vars.scss | 4 |
6 files changed, 17 insertions, 9 deletions
diff --git a/src/scopes/_blockquotes.scss b/src/scopes/_blockquotes.scss index d488860..91a7785 100644 --- a/src/scopes/_blockquotes.scss +++ b/src/scopes/_blockquotes.scss | |||
@@ -12,7 +12,7 @@ | |||
12 | @include bem.scope('blockquotes') { | 12 | @include bem.scope('blockquotes') { |
13 | blockquote { | 13 | blockquote { |
14 | padding-inline-start: calc(props.get(vars.$indent) - props.get(vars.$border-width)); | 14 | padding-inline-start: calc(props.get(vars.$indent) - props.get(vars.$border-width)); |
15 | margin-block: props.get(vars.$margin-bs); | 15 | margin-block: props.get(vars.$margin-bs) 0; |
16 | margin-inline: 1px 0; | 16 | margin-inline: 1px 0; |
17 | border-inline-start: props.get(vars.$border-width) solid props.get(vars.$border-color); | 17 | border-inline-start: props.get(vars.$border-width) solid props.get(vars.$border-color); |
18 | } | 18 | } |
diff --git a/src/scopes/_blockquotes.vars.scss b/src/scopes/_blockquotes.vars.scss index 5a34957..6aae242 100644 --- a/src/scopes/_blockquotes.vars.scss +++ b/src/scopes/_blockquotes.vars.scss | |||
@@ -1,9 +1,9 @@ | |||
1 | @use 'iro-sass/src/props'; | 1 | @use 'iro-sass/src/props'; |
2 | @use '../core.vars' as core; | 2 | @use '../core.vars' as core; |
3 | @use './body' as body; | 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(--s-blockquotes--margin-bs, props.get(body.$paragraph--margin-bs)) !default; | 6 | $margin-bs: props.def(--s-blockquotes--margin-bs, props.get(implicit.$paragraph--margin-bs)) !default; |
7 | $border-width: props.def(--s-blockquotes--border-width, props.get(core.$border-width--thick)) !default; | 7 | $border-width: props.def(--s-blockquotes--border-width, props.get(core.$border-width--thick)) !default; |
8 | 8 | ||
9 | $compact--indent: props.def(--s-blockquotes--compact--indent, props.get(core.$list--compact-indent)) !default; | 9 | $compact--indent: props.def(--s-blockquotes--compact--indent, props.get(core.$list--compact-indent)) !default; |
diff --git a/src/scopes/_body.scss b/src/scopes/_body.scss index a6a5cd7..6742a2a 100644 --- a/src/scopes/_body.scss +++ b/src/scopes/_body.scss | |||
@@ -32,5 +32,13 @@ | |||
32 | margin-block: 0; | 32 | margin-block: 0; |
33 | } | 33 | } |
34 | } | 34 | } |
35 | |||
36 | ul, | ||
37 | ol, | ||
38 | table, | ||
39 | pre, | ||
40 | blockquote { | ||
41 | margin-block: props.get(vars.$block--margin-b); | ||
42 | } | ||
35 | } | 43 | } |
36 | } | 44 | } |
diff --git a/src/scopes/_code.vars.scss b/src/scopes/_code.vars.scss index a80cc51..e06971b 100644 --- a/src/scopes/_code.vars.scss +++ b/src/scopes/_code.vars.scss | |||
@@ -1,6 +1,6 @@ | |||
1 | @use 'iro-sass/src/props'; | 1 | @use 'iro-sass/src/props'; |
2 | @use '../core.vars' as core; | 2 | @use '../core.vars' as core; |
3 | @use './body' as body; | 3 | @use './implicit.vars' as implicit; |
4 | 4 | ||
5 | $inline--pad-i: props.def(--s-code--inline--pad-i, props.get(core.$size--50)) !default; | 5 | $inline--pad-i: props.def(--s-code--inline--pad-i, props.get(core.$size--50)) !default; |
6 | $inline--pad-b: props.def(--s-code--inline--pad-b, props.get(core.$size--10)) !default; | 6 | $inline--pad-b: props.def(--s-code--inline--pad-b, props.get(core.$size--10)) !default; |
@@ -8,7 +8,7 @@ $inline--rounding: props.def(--s-code--inline--rounding, props.get(core.$roundin | |||
8 | 8 | ||
9 | $block--pad-i: props.def(--s-code--block--pad-i, props.get(core.$size--150)) !default; | 9 | $block--pad-i: props.def(--s-code--block--pad-i, props.get(core.$size--150)) !default; |
10 | $block--pad-b: props.def(--s-code--block--pad-b, props.get(core.$size--85)) !default; | 10 | $block--pad-b: props.def(--s-code--block--pad-b, props.get(core.$size--85)) !default; |
11 | $block--margin-bs: props.def(--s-code--block--margin-bs, props.get(body.$paragraph--margin-bs)) !default; | 11 | $block--margin-bs: props.def(--s-code--block--margin-bs, props.get(implicit.$paragraph--margin-bs)) !default; |
12 | $block--rounding: props.def(--s-code--block--rounding, props.get(core.$rounding)) !default; | 12 | $block--rounding: props.def(--s-code--block--rounding, props.get(core.$rounding)) !default; |
13 | 13 | ||
14 | $inline--fg: props.def(--s-code--inline--fg, props.get(core.$theme, --red, --1200), 'color') !default; | 14 | $inline--fg: props.def(--s-code--inline--fg, props.get(core.$theme, --red, --1200), 'color') !default; |
diff --git a/src/scopes/_lists.vars.scss b/src/scopes/_lists.vars.scss index f2511d8..8c46bc3 100644 --- a/src/scopes/_lists.vars.scss +++ b/src/scopes/_lists.vars.scss | |||
@@ -1,8 +1,8 @@ | |||
1 | @use 'iro-sass/src/props'; | 1 | @use 'iro-sass/src/props'; |
2 | @use '../core.vars' as core; | 2 | @use '../core.vars' as core; |
3 | @use './body' as body; | 3 | @use './implicit.vars' as implicit; |
4 | 4 | ||
5 | $indent: props.def(--s-lists--indent, calc(props.get(core.$list--indent) + 1em)) !default; | 5 | $indent: props.def(--s-lists--indent, calc(props.get(core.$list--indent) + 1em)) !default; |
6 | $margin-bs: props.def(--s-lists--margin-bs, props.get(body.$paragraph--margin-bs)) !default; | 6 | $margin-bs: props.def(--s-lists--margin-bs, props.get(implicit.$paragraph--margin-bs)) !default; |
7 | 7 | ||
8 | $compact--indent: props.def(--s-lists--compact--indent, props.get(core.$list--compact-indent)) !default; | 8 | $compact--indent: props.def(--s-lists--compact--indent, props.get(core.$list--compact-indent)) !default; |
diff --git a/src/scopes/_tables.vars.scss b/src/scopes/_tables.vars.scss index ded6b80..362b70f 100644 --- a/src/scopes/_tables.vars.scss +++ b/src/scopes/_tables.vars.scss | |||
@@ -1,4 +1,4 @@ | |||
1 | @use 'iro-sass/src/props'; | 1 | @use 'iro-sass/src/props'; |
2 | @use 'body.vars' as body; | 2 | @use 'implicit.vars' as implicit; |
3 | 3 | ||
4 | $margin-bs: props.def(--s-tables--margin-bs, props.get(body.$paragraph--margin-bs)) !default; | 4 | $margin-bs: props.def(--s-tables--margin-bs, props.get(implicit.$paragraph--margin-bs)) !default; |