Apply height css to limit height of logout modal and apply overflow:auto to add a scrollbar if needed so that we don't have to scroll to logout.

This commit is contained in:
Isaac Connor 2021-05-30 18:31:26 -04:00
parent 0bcb30b8a9
commit 4825370a7f
1 changed files with 10 additions and 0 deletions

View File

@ -736,3 +736,13 @@ a.flip {
#objdetectModal .modal-content {
width: fit-content;
}
#modalLogout .modal-dialog {
height: 100%;
}
#modalLogout .modal-content {
height: 90%;
}
#modalLogout .modal-body {
overflow:auto;
}