From 8be2c738df063fb818be86d06b9c3e2eb4d12fef Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Tue, 3 Oct 2023 22:15:15 +0800 Subject: [PATCH] Make figcaption self align to bottom This is in case the image height is smaller than the figcaption. Could be possible for text in other languages. Flexbox is so cool. --- src/components/status.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/status.css b/src/components/status.css index 2ba55e76..e3a28509 100644 --- a/src/components/status.css +++ b/src/components/status.css @@ -713,10 +713,11 @@ padding: 0; display: flex; flex-wrap: wrap; - align-items: flex-end; + /* align-items: flex-end; */ column-gap: 4px; figcaption { + align-self: flex-end; padding: 4px; font-size: 90%; color: var(--text-insignificant-color);