summaryrefslogtreecommitdiffstats
path: root/assets/css/components/_section-heading.scss
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/components/_section-heading.scss')
-rw-r--r--assets/css/components/_section-heading.scss29
1 files changed, 0 insertions, 29 deletions
diff --git a/assets/css/components/_section-heading.scss b/assets/css/components/_section-heading.scss
deleted file mode 100644
index 717442b..0000000
--- a/assets/css/components/_section-heading.scss
+++ /dev/null
@@ -1,29 +0,0 @@
1@include namespace('section-heading') {
2 @include store((
3 --dims: (
4 --pad-y: $line-height * 1rem
5 ),
6 --colors: (
7 --line: prop(--colors --accent --color, $global: true),
8 )
9 ));
10
11 @include component(namespace()) {
12 margin: 0 0 prop(--dims --pad-y);
13 font-family: $font-fam--text;
14 font-size: 1 / 16 * 13em;
15 font-weight: bold;
16 letter-spacing: .2em;
17 text-transform: uppercase;
18
19 &::before {
20 content: '';
21 display: inline-block;
22 width: 3em;
23 height: 2px;
24 margin-right: 1.3em;
25 background-color: prop(--colors --line);
26 vertical-align: middle;
27 }
28 }
29}