h1 und h2 verallgemeinert und .section sinnvoll erweitert

This commit is contained in:
Jason Streifling 2024-10-05 17:19:18 +02:00
parent 518dacd5ef
commit aac2e252cd

View File

@ -2,10 +2,18 @@
@tailwind components; @tailwind components;
@tailwind utilities; @tailwind utilities;
h1 {
@apply mb-4 text-3xl
}
h2 {
@apply mb-4 text-2xl
}
.card { .card {
@apply bg-stone-200 mx-auto p-12 rounded-xl text-stone-800 w-96 @apply bg-stone-200 mx-auto p-12 rounded-xl text-stone-800 w-96
} }
.section { .section {
@apply container gap-16 grid grid-cols-2 max-w-screen-xl mx-auto @apply container gap-16 grid grid-cols-2 max-w-screen-xl mx-auto py-16
} }