From 14c93e755438830bbb309e3dfae38ab2b7b57be5 Mon Sep 17 00:00:00 2001 From: Jochem Loedeman Date: Mon, 16 Sep 2024 17:22:46 +0200 Subject: [PATCH] fix single column formatting --- app/scripts/distribute_images.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/scripts/distribute_images.js b/app/scripts/distribute_images.js index dfe0451..b3a86b6 100644 --- a/app/scripts/distribute_images.js +++ b/app/scripts/distribute_images.js @@ -26,7 +26,7 @@ function distributeImages() { gallery.innerHTML = ''; // Clear existing content // Get the number of columns based on the current screen size - let columnCount = 2; + let columnCount = 1; if (window.innerWidth >= threeColumnThreshold) { columnCount = 3; }