homepage/tailwind.css

26 lines
310 B
CSS
Raw Normal View History

2024-02-25 13:20:06 +01:00
@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;
}
}