From aac2e252cd5eb8f67b6351458cf5ab6ef4bc12d7 Mon Sep 17 00:00:00 2001 From: Jason Streifling Date: Sat, 5 Oct 2024 17:19:18 +0200 Subject: [PATCH] h1 und h2 verallgemeinert und .section sinnvoll erweitert --- styles/input.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/styles/input.css b/styles/input.css index 220b54f..ebd50d4 100644 --- a/styles/input.css +++ b/styles/input.css @@ -2,10 +2,18 @@ @tailwind components; @tailwind utilities; +h1 { + @apply mb-4 text-3xl +} + +h2 { + @apply mb-4 text-2xl +} + .card { @apply bg-stone-200 mx-auto p-12 rounded-xl text-stone-800 w-96 } .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 }