From 0fcdcbc81217936c5aba6c83ec5fd7fc9f3c61cf Mon Sep 17 00:00:00 2001 From: mrfry Date: Fri, 21 May 2021 09:31:52 +0200 Subject: [PATCH] Mobile view modal size --- src/components/modal.module.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/components/modal.module.css b/src/components/modal.module.css index 8c55777..d1e47a0 100644 --- a/src/components/modal.module.css +++ b/src/components/modal.module.css @@ -10,7 +10,6 @@ .modalContent { display: flex; - max-height: 80%; width: 70%; position: fixed; @@ -27,6 +26,12 @@ cursor: default; } +@media screen and (max-width: 700px) { + .modalContent { + width: 90%; + } +} + .close { cursor: pointer; font-size: 16.5px;