From fd3d42597cfda46c7855b9b908cefadc03570ee8 Mon Sep 17 00:00:00 2001 From: szaimen Date: Sat, 9 Apr 2022 18:36:12 +0200 Subject: [PATCH] small cleanup of small modal size values Signed-off-by: szaimen --- src/components/Modal/Modal.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Modal/Modal.vue b/src/components/Modal/Modal.vue index 79e913a678..f4511c25f3 100644 --- a/src/components/Modal/Modal.vue +++ b/src/components/Modal/Modal.vue @@ -725,8 +725,8 @@ export default { // Sizing &--small { .modal-container { - width: 390px; - max-width: 95%; + width: 400px; + max-width: 90%; max-height: 90%; } } @@ -756,7 +756,7 @@ export default { // Make modal full screen on mobile @media only screen and (max-width: math.div($breakpoint-mobile, 2)) { - &:not(&--small) .modal-container { + .modal-container { max-width: initial; width: 100%; max-height: initial;