summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2024-11-29 22:32:37 +0100
committerVolpeon <git@volpeon.ink>2024-11-29 22:32:37 +0100
commit9c8a9d413db3997c3e278686679b36007788d0a5 (patch)
treec53e0a46f4905d885ed7a6741abdb1f0769d495f
parentFix (diff)
downloadiro-design-9c8a9d413db3997c3e278686679b36007788d0a5.tar.gz
iro-design-9c8a9d413db3997c3e278686679b36007788d0a5.tar.bz2
iro-design-9c8a9d413db3997c3e278686679b36007788d0a5.zip
Heading offset
-rw-r--r--src/objects/_heading.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/objects/_heading.scss b/src/objects/_heading.scss
index f5932f5..bdc7027 100644
--- a/src/objects/_heading.scss
+++ b/src/objects/_heading.scss
@@ -19,7 +19,6 @@
19 color: props.get(vars.$text-color); 19 color: props.get(vars.$text-color);
20 text-transform: none; 20 text-transform: none;
21 letter-spacing: normal; 21 letter-spacing: normal;
22 transform: translateX(props.get(vars.$offset));
23 22
24 & + & { 23 & + & {
25 margin-block-start: props.get(vars.$margin-bs-sibling); 24 margin-block-start: props.get(vars.$margin-bs-sibling);
@@ -53,6 +52,7 @@
53 font-feature-settings: props.get($feature-settings); 52 font-feature-settings: props.get($feature-settings);
54 line-height: props.get($line-height); 53 line-height: props.get($line-height);
55 letter-spacing: props.get($letter-spacing); 54 letter-spacing: props.get($letter-spacing);
55 transform: translateX(props.get(vars.$offset));
56 } 56 }
57 } 57 }
58 } 58 }