From d4ff2c2b028c6c6721b4eb3fc0093f1f4b5be855 Mon Sep 17 00:00:00 2001 From: Varun Patil Date: Tue, 16 Aug 2022 01:37:10 +0000 Subject: [PATCH] Make photos bigger --- src/components/Timeline.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Timeline.vue b/src/components/Timeline.vue index a357f177..af947a7a 100644 --- a/src/components/Timeline.vue +++ b/src/components/Timeline.vue @@ -109,7 +109,7 @@ export default { this.timelineHeight = this.$refs.timelineScroll.clientHeight; this.$refs.scroller.$el.style.height = (height - 4) + 'px'; - this.numCols = Math.max(4, Math.floor(width / 150)); + this.numCols = Math.max(4, Math.floor(width / 175)); this.rowHeight = Math.floor(width / this.numCols) - 4; },