From d60131cf57b707536b48214ad752daed6b3a25db Mon Sep 17 00:00:00 2001 From: Hristo Nedelkov Date: Tue, 25 Jul 2023 21:15:47 +0300 Subject: [PATCH] Fix height --- src/components/BackgroundImage/BackgroundImage.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/BackgroundImage/BackgroundImage.jsx b/src/components/BackgroundImage/BackgroundImage.jsx index ca376452..cb128012 100644 --- a/src/components/BackgroundImage/BackgroundImage.jsx +++ b/src/components/BackgroundImage/BackgroundImage.jsx @@ -3,7 +3,7 @@ import { styled } from "tamagui"; const BackgroundImage = styled("div", { boxShadow: "inset 100px 0px 100px white", width: "650px", - height: "99vh", + height: "91.9vh", borderTopRightRadius: "25px", borderBottomRightRadius: "25px", });