diff --git a/app/index.html b/app/index.html
index ee4aeca..2678445 100644
--- a/app/index.html
+++ b/app/index.html
@@ -49,7 +49,7 @@
-
+
-
+
diff --git a/app/scripts/distribute_images.js b/app/scripts/distribute_images.js
index 2a4d1ba..6da5f2c 100644
--- a/app/scripts/distribute_images.js
+++ b/app/scripts/distribute_images.js
@@ -17,7 +17,7 @@ const images = [
"image_14.jpg",
];
-const twoColumnThreshold = 768;
+// const twoColumnThreshold = 768;
const threeColumnThreshold = 1024;
// Function to distribute images into columns
@@ -26,13 +26,13 @@ function distributeImages() {
gallery.innerHTML = ''; // Clear existing content
// Get the number of columns based on the current screen size
- let columnCount = 1;
+ let columnCount = 2;
if (window.innerWidth >= threeColumnThreshold) {
columnCount = 3;
}
- else if (window.innerWidth >= twoColumnThreshold) {
- columnCount = 2;
- }
+ // else if (window.innerWidth >= twoColumnThreshold) {
+ // columnCount = 2;
+ // }
// Create columns
const columns = [];