From 01e00a554bbaf1c16e44de79496fc0d8f14791e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20P=C4=99dzich?= Date: Sat, 7 Jan 2023 22:18:25 +0100 Subject: [PATCH] Remove default html and body styling --- src/styles/global.css | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/styles/global.css b/src/styles/global.css index 72dfd9d..cef91ea 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -2,15 +2,14 @@ @tailwind components; @tailwind utilities; -html, -body { - @apply w-screen h-screen overflow-x-hidden; -} - body { @apply m-0 p-0; } +p { + @apply md:text-xl text-lg; +} + a { @apply text-primary hover:text-primary-focus focus:text-primary-focus; }