From 3842e25fa036bd803264fc969ef5ccf596505c9b Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Sat, 16 Nov 2024 09:40:50 -0800 Subject: [PATCH] Finally adjust the spacing of the date relative to the page title This has been bothering me for a little while. The spacing is too big. Squish them together and give it secondary text color so it doesn't compete with the title or body text. --- assets/css/099_page_header.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/assets/css/099_page_header.css b/assets/css/099_page_header.css index ff52630..21cac5a 100644 --- a/assets/css/099_page_header.css +++ b/assets/css/099_page_header.css @@ -31,9 +31,10 @@ } .page-date { + color: var(--text-color-secondary); display: block; font-family: var(--font-family-body); font-size: var(--text-s); - margin-block: var(--space-paragraph) 0; + margin-block: var(--space-xs) 0; } }