From 29a9ef827aa07f4d270311b3197874bf6ba654d1 Mon Sep 17 00:00:00 2001 From: Abhinav Date: Wed, 22 Jun 2022 18:14:55 +0530 Subject: [PATCH] reduce max image width to 180px --- src/constants/gallery/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants/gallery/index.ts b/src/constants/gallery/index.ts index 70c84e445..262b6f502 100644 --- a/src/constants/gallery/index.ts +++ b/src/constants/gallery/index.ts @@ -1,7 +1,7 @@ export const GAP_BTW_TILES = 4; export const DATE_CONTAINER_HEIGHT = 48; export const SIZE_AND_COUNT_CONTAINER_HEIGHT = 72; -export const IMAGE_CONTAINER_MAX_HEIGHT = 200; +export const IMAGE_CONTAINER_MAX_HEIGHT = 184; export const IMAGE_CONTAINER_MAX_WIDTH = IMAGE_CONTAINER_MAX_HEIGHT - GAP_BTW_TILES; export const MIN_COLUMNS = 4;