diff --git a/src/components/Carousel.tsx b/src/components/Carousel.tsx index f7ca4f7..38d4084 100644 --- a/src/components/Carousel.tsx +++ b/src/components/Carousel.tsx @@ -21,7 +21,7 @@ const Carousel: Component = (props) => { const [isShortScreen, setIsShortScreen] = createSignal(false); createEffect(() => { - const mediaQuery = window.matchMedia("(max-height: 480px)"); + const mediaQuery = window.matchMedia("(max-height: 840px)"); const updateScreenSize = () => setIsShortScreen(mediaQuery.matches); updateScreenSize();