From 5045812cf175d128996e989f79e73988b92b2f1a Mon Sep 17 00:00:00 2001 From: Trirst <abeces968@gmail.com> Date: Fri, 29 Oct 2021 01:37:03 +0700 Subject: [PATCH] Base heading styles --- src/static/css/tailwind.css | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/src/static/css/tailwind.css b/src/static/css/tailwind.css index bd6213e..809a173 100644 --- a/src/static/css/tailwind.css +++ b/src/static/css/tailwind.css @@ -1,3 +1,17 @@ @tailwind base; @tailwind components; -@tailwind utilities; \ No newline at end of file +@tailwind utilities; +@layer base { + h1 { + @apply text-4xl; + } + h2 { + @apply text-3xl; + } + h3 { + @apply text-xl; + } + h4 { + @apply text-xl; + } +} \ No newline at end of file -- GitLab