homepage/tailwind.css

26 lines
311 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
h1, h2 {
@apply p-4;
}
h1, h2 {
@apply font-bold;
@apply text-center;
}
h1 {
@apply text-3xl;
}
h2 {
@apply text-2xl;
}
h3 {
@apply text-xl;
}
}