From 44c8e54539f4b01534215b5d08296858296e1080 Mon Sep 17 00:00:00 2001 From: Kibi Kelburton Date: Wed, 13 May 2026 14:29:53 +0200 Subject: [PATCH] adding grid-auto-flow: dense; to div.posts this may fuck with the sequential order but will make sure everything is properly filled --- public/s/css/f0ckm.css | 1 + 1 file changed, 1 insertion(+) diff --git a/public/s/css/f0ckm.css b/public/s/css/f0ckm.css index d56f4a3..f09588c 100644 --- a/public/s/css/f0ckm.css +++ b/public/s/css/f0ckm.css @@ -3310,6 +3310,7 @@ div.posts { width: 100%; display: grid; grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)); + grid-auto-flow: dense; justify-items: center; grid-gap: 5px; margin: 0;