From de971645edf023ede6fcc5453a2a900ce87f826a Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Tue, 20 May 2025 19:40:50 +0300 Subject: [PATCH] Fix ad covering full screen modals Closes #2314 --- app/components/elements/Dialog.module.css | 5 +++-- app/styles/layout.css | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/app/components/elements/Dialog.module.css b/app/components/elements/Dialog.module.css index 88069a19e..d95c9228e 100644 --- a/app/components/elements/Dialog.module.css +++ b/app/components/elements/Dialog.module.css @@ -46,9 +46,10 @@ } .fullScreenModal { - min-width: 100vw; - min-height: 100vh; + min-width: 100%; + min-height: 100%; border-radius: 0; + padding-block-end: var(--s-32); } .modal[data-entering] { diff --git a/app/styles/layout.css b/app/styles/layout.css index c17318d0f..e7c055a59 100644 --- a/app/styles/layout.css +++ b/app/styles/layout.css @@ -402,6 +402,7 @@ .layout__overlay-nav__dialog { padding-block: var(--s-12) !important; + padding-block-end: var(--s-32) !important; padding-inline: 0 !important; }