From 387ecd6fd70075aa8786ce5031d95d59d1dd367e Mon Sep 17 00:00:00 2001 From: Mitchell McCaffrey Date: Wed, 9 Jun 2021 08:32:58 +1000 Subject: [PATCH] Fix modal inset for safari --- src/components/Modal.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/Modal.js b/src/components/Modal.js index 43db923..664d7a9 100644 --- a/src/components/Modal.js +++ b/src/components/Modal.js @@ -34,7 +34,10 @@ function StyledModal({ }, content: { backgroundColor: theme.colors.background, - inset: "initial", + top: "initial", + left: "initial", + bottom: "initial", + right: "initial", maxHeight: "100%", ...style, },