From 54148bd583238d5ad57051f3b5b3884b165e3f01 Mon Sep 17 00:00:00 2001 From: rikhall1515 Date: Thu, 25 Apr 2024 16:40:26 +0200 Subject: [PATCH] refactor(css): add styles to typography --- styles/content.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/styles/content.css b/styles/content.css index 79c3ec7..8e8fc2a 100644 --- a/styles/content.css +++ b/styles/content.css @@ -3,7 +3,7 @@ main { @apply w-full border-t border-border - bg-background; + bg-foreground; } h1, @@ -29,19 +29,19 @@ main { } h3 { - @apply text-3xl; + @apply text-xl lg:text-3xl; } h4 { - @apply text-2xl; + @apply text-lg lg:text-2xl; } h5, h6 { - @apply text-xl; + @apply text-lg font-medium lg:text-xl; } p { - @apply font-atkinson; + @apply font-atkinson text-lg; } }