aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/heading/heading.module.scss
blob: a2e339a1ad9571a6bc79d4d3824a32aadf3df1e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@use "../../../styles/abstracts/placeholders";

.heading {
  &--1 {
    @extend %h1;
  }

  &--2 {
    @extend %h2;
  }

  &--3 {
    @extend %h3;
  }

  &--4 {
    @extend %h4;
  }

  &--5 {
    @extend %h5;
  }

  &--6 {
    @extend %h6;
  }
}