24 lines
539 B
CSS
24 lines
539 B
CSS
@import url('https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.1.3/css/bootstrap.min.css');
|
|
|
|
/* Убедимся, что все модальные окна скрыты по умолчанию */
|
|
.modal {
|
|
display: none !important;
|
|
position: fixed;
|
|
z-index: 9999;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.modal.show {
|
|
display: block !important;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
/* Убедимся, что body не заблокирован */
|
|
body {
|
|
overflow: auto !important;
|
|
}
|
|
|
|
body.modal-open {
|
|
overflow: hidden !important;
|
|
}
|