From 511e57db3d17be915eaeeb96e8c4660564f8cdd1 Mon Sep 17 00:00:00 2001 From: Kien Nguyen Date: Thu, 31 Aug 2023 09:12:25 +0700 Subject: [PATCH] fix: change heading size --- assets/css/site.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/css/site.css b/assets/css/site.css index 5b8223b..09a70d3 100644 --- a/assets/css/site.css +++ b/assets/css/site.css @@ -43,17 +43,17 @@ h6 { } h1 { - @apply text-3xl; + @apply text-4xl; } h2 { - @apply text-2xl; + @apply text-3xl; counter-increment: h2; counter-reset: h3; } h3 { - @apply text-xl; + @apply text-2xl; counter-increment: h3; counter-reset: h4; }