ui: prevent vertical modal overflows and instead present a scrollbar

This commit is contained in:
Stephan de Wit 2024-03-28 16:59:41 +01:00
parent 0739a2ab16
commit fe1a8ecfa6
1 changed files with 5 additions and 0 deletions

View File

@ -877,3 +877,8 @@ div[data-for*="help_for"] {
#OPNsenseStdWaitDialog div.modal-body {
padding: 15px;
}
.modal-body {
max-height: calc(100vh - 265px);
overflow-y: auto;
}