diff options
author | Volpeon <git@volpeon.ink> | 2024-10-19 18:23:02 +0200 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2024-10-19 18:23:02 +0200 |
commit | 27222cb91c390a42055a7123b5a9409c928e8b26 (patch) | |
tree | 650b5614c4aae0056127038a4ab204198aae7f4d /src/scopes | |
parent | Update (diff) | |
download | iro-design-27222cb91c390a42055a7123b5a9409c928e8b26.tar.gz iro-design-27222cb91c390a42055a7123b5a9409c928e8b26.tar.bz2 iro-design-27222cb91c390a42055a7123b5a9409c928e8b26.zip |
Fixes
Diffstat (limited to 'src/scopes')
-rw-r--r-- | src/scopes/_blockquotes.vars.scss | 2 | ||||
-rw-r--r-- | src/scopes/_implicit.scss | 1 | ||||
-rw-r--r-- | src/scopes/_implicit.vars.scss | 2 |
3 files changed, 4 insertions, 1 deletions
diff --git a/src/scopes/_blockquotes.vars.scss b/src/scopes/_blockquotes.vars.scss index 39d90bd..f2cf935 100644 --- a/src/scopes/_blockquotes.vars.scss +++ b/src/scopes/_blockquotes.vars.scss | |||
@@ -8,4 +8,4 @@ $border-width: props.def(--s-blockquotes--border-width, props.get(core.$border-w | |||
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; |
10 | 10 | ||
11 | $border-color: props.def(--s-blockquotes--border-width, props.get(core.$theme, --border)) !default; | 11 | $border-color: props.def(--s-blockquotes--border-color, props.get(core.$theme, --border)) !default; |
diff --git a/src/scopes/_implicit.scss b/src/scopes/_implicit.scss index 4bb3482..d66950a 100644 --- a/src/scopes/_implicit.scss +++ b/src/scopes/_implicit.scss | |||
@@ -61,6 +61,7 @@ | |||
61 | font-weight: props.get(vars.$heading--font-weight); | 61 | font-weight: props.get(vars.$heading--font-weight); |
62 | font-feature-settings: props.get(vars.$heading--feature-settings); | 62 | font-feature-settings: props.get(vars.$heading--feature-settings); |
63 | line-height: props.get(vars.$heading--line-height); | 63 | line-height: props.get(vars.$heading--line-height); |
64 | color: props.get(vars.$heading--color); | ||
64 | 65 | ||
65 | & + & { | 66 | & + & { |
66 | margin-block-start: props.get(vars.$heading--margin-bs-sibling); | 67 | margin-block-start: props.get(vars.$heading--margin-bs-sibling); |
diff --git a/src/scopes/_implicit.vars.scss b/src/scopes/_implicit.vars.scss index f0eb45d..7390672 100644 --- a/src/scopes/_implicit.vars.scss +++ b/src/scopes/_implicit.vars.scss | |||
@@ -22,3 +22,5 @@ $heading--line-height: props.def(--s-implicit--heading--line-height, props | |||
22 | $heading--font-weight: props.def(--s-implicit--heading--font-weight, props.get(core.$font--headline--weight)) !default; | 22 | $heading--font-weight: props.def(--s-implicit--heading--font-weight, props.get(core.$font--headline--weight)) !default; |
23 | $heading--font-size: props.def(--s-implicit--heading--font-size, props.get(core.$font-size--100)); | 23 | $heading--font-size: props.def(--s-implicit--heading--font-size, props.get(core.$font-size--100)); |
24 | $heading--feature-settings: props.def(--s-implicit--heading--feature-settings, props.get(core.$font--headline--feature-settings)) !default; | 24 | $heading--feature-settings: props.def(--s-implicit--heading--feature-settings, props.get(core.$font--headline--feature-settings)) !default; |
25 | |||
26 | $heading--color: props.def(--s-implicit--heading--color, props.get(core.$theme, --heading)); | ||