From 07b3e55903b6c841c3716fea283a3242c58783ee Mon Sep 17 00:00:00 2001 From: balibabu Date: Thu, 23 Jan 2025 18:16:52 +0800 Subject: [PATCH] Feat: Set the style of the header tag #3221 (#4608) ### What problem does this PR solve? Feat: Set the style of the header tag #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality) --- web/tailwind.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/web/tailwind.css b/web/tailwind.css index 8a5c626e71b..de3c6638727 100644 --- a/web/tailwind.css +++ b/web/tailwind.css @@ -151,4 +151,20 @@ 'rlig' 1, 'calt' 1; } + + /* https://tailwindcss.com/docs/preflight */ + + h1 { + @apply text-2xl font-bold; + } + h2 { + @apply text-xl font-semibold; + } + h3 { + @apply text-lg font-medium; + } + + h4 { + @apply text-base font-normal; + } }