26 lines
310 B
CSS
26 lines
310 B
CSS
|
@tailwind base;
|
||
|
@tailwind components;
|
||
|
@tailwind utilities;
|
||
|
|
||
|
@layer base {
|
||
|
h1, h2 {
|
||
|
@apply p-3;
|
||
|
}
|
||
|
|
||
|
h1, h2 {
|
||
|
@apply font-bold;
|
||
|
@apply text-center;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
@apply text-3xl;
|
||
|
}
|
||
|
|
||
|
h2 {
|
||
|
@apply text-2xl;
|
||
|
}
|
||
|
|
||
|
h3 {
|
||
|
@apply text-xl;
|
||
|
}
|
||
|
}
|