From a1e1890e3960d10f0762836cb78b0b165d93274d Mon Sep 17 00:00:00 2001 From: Lam Nguyen Date: Thu, 6 Mar 2025 06:53:54 -0800 Subject: [PATCH 1/2] fix: Removed note callout redundancy --- layouts/shortcodes/note.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/shortcodes/note.html b/layouts/shortcodes/note.html index 95b0ebf..7c096dd 100644 --- a/layouts/shortcodes/note.html +++ b/layouts/shortcodes/note.html @@ -1,3 +1,3 @@
-
Note:
{{ .Inner | markdownify }}
+
{{ .Inner | markdownify }}
From 4742b402939bd400657756ae543583e3887b5bc6 Mon Sep 17 00:00:00 2001 From: Lam Nguyen Date: Thu, 6 Mar 2025 08:09:43 -0800 Subject: [PATCH 2/2] fix: Removed margins of 3rem --- assets/css/v2/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/css/v2/style.css b/assets/css/v2/style.css index aad51f1..baba34b 100644 --- a/assets/css/v2/style.css +++ b/assets/css/v2/style.css @@ -695,7 +695,7 @@ h1 { h2 { font-size: 1.5rem; - margin: 3rem 0 1rem 0; + margin: 0 0 1rem 0; } /* tables */ @@ -761,7 +761,7 @@ table hr { blockquote { border: 1px solid var(--color-foreground); padding: 1rem; - margin: 3rem -1rem; + margin: 0 -1rem; /* solid 3px drop shadow */ box-shadow: 3px 3px 0px var(--color-shadow);