aboutsummaryrefslogtreecommitdiff
path: root/extension/src/assets/headings.scss
blob: fe9b039edf596d755ce8134b2c5df97771510916 (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
28
29
30
31
32
h1,
h2,
h3,
h4,
h5,
h6 {
    @apply font-medium leading-tight mt-0 mb-2;
}

h1 {
    @apply sm:text-4xl text-3xl;
}

h2 {
    @apply sm:text-3xl text-2xl;
}

h3 {
    @apply sm:text-2xl text-xl;
}

h4 {
    @apply sm:text-xl text-lg;
}

h5 {
    @apply sm:text-lg text-base;
}

h6 {
    @apply sm:text-base text-sm;
}