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:
parent
cd36bd9bf5
commit
f723b39cf6
|
@ -736,3 +736,13 @@ a.flip {
|
||||||
#objdetectModal .modal-content {
|
#objdetectModal .modal-content {
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#modalLogout .modal-dialog {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
#modalLogout .modal-content {
|
||||||
|
height: 90%;
|
||||||
|
}
|
||||||
|
#modalLogout .modal-body {
|
||||||
|
overflow:auto;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue