From 708682f017fb0f6a1293bc0a422872c95025aa6d Mon Sep 17 00:00:00 2001 From: "Danilo M." Date: Tue, 28 Apr 2026 13:45:39 +0200 Subject: fix: use auto-fill instead of auto-fit for repo grid to ensure 2-col layout --- assets/css/main.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'assets/css') diff --git a/assets/css/main.css b/assets/css/main.css index 8921966..b7efba9 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -589,7 +589,7 @@ html.theme-light picture img[src="/images/default_thumbnail_dark.png"] { .repo-grid { display: grid; - grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); + grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; } -- cgit v1.2.3