From 74eaa00a9bc4b30f1d31fdcf6bf4e0206c0d42af Mon Sep 17 00:00:00 2001 From: daudix Date: Thu, 29 Aug 2024 06:41:25 +0300 Subject: [PATCH] Center the date vertically when tags wrap --- sass/_article-list.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sass/_article-list.scss b/sass/_article-list.scss index b67c444..27b1efd 100644 --- a/sass/_article-list.scss +++ b/sass/_article-list.scss @@ -321,10 +321,15 @@ display: flex; flex-wrap: nowrap; justify-content: space-between; + align-items: center; gap: 0.25rem; margin-block-start: 1rem; border-block-start: max(1px, 0.0625rem) solid var(--fg-muted-2); padding-block-start: 0.5rem; + + small { + line-height: 1.25; + } } } }