aboutsummaryrefslogtreecommitdiff
path: root/front-end/src/bootstrap/style/headings.scss
blob: 326a7c202402a4d1cf3151170480393fddeb8678 (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-5xl text-4xl;
}

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

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

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

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

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