homepage/tailwind.css
2024-02-25 13:20:06 +01:00

26 lines
No EOL
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;
}
}