blob: e7c703443432cec2e7c47068c7b006f745b62d28 (
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
33
|
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
h1 {
@apply text-5xl;
@apply font-semibold;
@apply mb-2;
}
h2 {
@apply text-3xl;
@apply font-semibold;
@apply mb-1;
}
h3 {
@apply text-2xl;
@apply font-semibold;
}
h4 {
@apply text-xl;
@apply font-semibold;
}
h5 {
@apply text-lg;
@apply font-semibold;
}
h6 {
@apply font-semibold;
}
}
[x-cloak] { display: none !important; }
|