Adjust mobile modal to full-screen

This commit is contained in:
Egor
2025-10-11 07:38:03 +03:00
parent cf77b38fe7
commit edc6b766cb

View File

@@ -2591,6 +2591,21 @@
display: flex;
flex-direction: column;
gap: 18px;
overflow-y: auto;
}
@media (max-width: 600px) {
.modal-backdrop {
padding: 0;
align-items: stretch;
}
.modal {
max-width: none;
height: 100vh;
border-radius: 0;
box-shadow: none;
}
}
.modal-header {