fix(client): wrong positioning of modals due to mobile changes

This commit is contained in:
Elian Doran 2026-02-04 12:06:29 +02:00
parent fe02871e91
commit 416144265b
No known key found for this signature in database

View File

@ -1681,13 +1681,15 @@ body:not(.mobile) #launcher-pane.horizontal .dropdown-submenu > .dropdown-menu {
background: var(--main-background-color);
}
.modal-dialog {
margin: var(--bs-modal-margin);
max-width: 80%;
}
body.mobile {
.modal-dialog {
margin: var(--bs-modal-margin);
max-width: 80%;
}
.modal-content {
height: 100%;
.modal-content {
height: 100%;
}
}
}