homepage/tailwind.css

27 lines
311 B
CSS
Raw Normal View History

2024-02-25 13:20:06 +01:00
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
h1, h2 {
2024-03-14 07:57:30 +01:00
@apply p-4;
2024-02-25 13:20:06 +01:00
}
h1, h2 {
@apply font-bold;
@apply text-center;
}
h1 {
@apply text-3xl;
}
h2 {
@apply text-2xl;
}
h3 {
@apply text-xl;
}
2024-03-14 07:57:30 +01:00
}