From 2977b1b9164e21207d039b8d6ef436b6f9e814e5 Mon Sep 17 00:00:00 2001 From: "Tanner Collin (aider)" Date: Mon, 23 Jun 2025 12:59:17 -0600 Subject: [PATCH] fix: Display creation items inline-block for column layout --- themes/theme/templates/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/themes/theme/templates/style.css b/themes/theme/templates/style.css index 61bce12..4c5ffec 100644 --- a/themes/theme/templates/style.css +++ b/themes/theme/templates/style.css @@ -39,6 +39,11 @@ text-align: center; } + .index .creations .creation { + display: inline-block; + vertical-align: top; /* Ensures alignment if items have different heights */ + } + .index .creations .creation a { border-bottom: none; }