From cb47f33bc2a89e71dd01dc9a0e1cffd3188dcf7e Mon Sep 17 00:00:00 2001 From: Frank Waalkens Date: Wed, 17 Jan 2024 12:44:06 +0100 Subject: [PATCH] Adjusted height for breakpoints medium/small. --- src/app/Marine2/utils/media.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/Marine2/utils/media.tsx b/src/app/Marine2/utils/media.tsx index 8f17727f0..8610450d2 100644 --- a/src/app/Marine2/utils/media.tsx +++ b/src/app/Marine2/utils/media.tsx @@ -16,8 +16,8 @@ type BreakpointsType = { } export const defaultBoxBreakpoints: BreakpointsType = { - small: { width: 250, height: 300 }, - medium: { width: 500, height: 300 }, + small: { width: 250, height: 360 }, + medium: { width: 500, height: 360 }, large: { width: 800, height: 440 }, }