From d5c067724eddf0c8189cdc6dee0cacd0dfaa67cf Mon Sep 17 00:00:00 2001 From: Kasper Seweryn Date: Mon, 12 Jun 2023 10:02:24 +0200 Subject: [PATCH] fix(ui): move modals above all content Part-of: --- changes/changelog.d/2154.bugfix | 1 + front/src/style/components/_modal.scss | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 changes/changelog.d/2154.bugfix diff --git a/changes/changelog.d/2154.bugfix b/changes/changelog.d/2154.bugfix new file mode 100644 index 000000000..997892605 --- /dev/null +++ b/changes/changelog.d/2154.bugfix @@ -0,0 +1 @@ +Moved modals above all content (#2154) diff --git a/front/src/style/components/_modal.scss b/front/src/style/components/_modal.scss index af6f2eaea..e4b9e7eb8 100644 --- a/front/src/style/components/_modal.scss +++ b/front/src/style/components/_modal.scss @@ -1,3 +1,6 @@ +body > .modals { + z-index: 99999 !important; +} .modal > .header { text-align: center;