From d7f241879019cbebf09e5eae02a91765fedd0d69 Mon Sep 17 00:00:00 2001 From: Kirk Haines Date: Thu, 2 May 2024 13:58:06 -0600 Subject: [PATCH] Change the width of the horizontal slide so that you don't get the really ugly black void appearing on wide displays. --- src/blocks/Slide/Slide.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/blocks/Slide/Slide.jsx b/src/blocks/Slide/Slide.jsx index 504f427..4a4257f 100644 --- a/src/blocks/Slide/Slide.jsx +++ b/src/blocks/Slide/Slide.jsx @@ -5,6 +5,7 @@ import Image from "../../elements/BackgroundImg.jsx"; const Wrapper = styled.div` position: relative; + min-width: 125vw; min-height: 100vh; max-height: 800px; display: flex;