admin-body-editor-fix
All checks were successful
Deploy on push / deploy (push) Successful in 6s

This commit is contained in:
2025-07-01 09:10:32 +03:00
parent 30757fb38a
commit 547c934302
6 changed files with 331 additions and 75 deletions

View File

@@ -18,7 +18,7 @@
box-shadow: var(--shadow-lg);
display: flex;
flex-direction: column;
max-height: 90vh;
max-height: 95vh;
width: 100%;
animation: modal-appear 0.2s ease-out;
}
@@ -35,12 +35,14 @@
.modal-large {
max-width: 1200px;
width: 95vw;
min-height: 600px;
height: 85vh;
max-height: 85vh;
}
.modal-large .content {
max-height: 70vh;
overflow-y: auto;
flex: 1;
overflow: hidden; /* Убираем скролл модального окна, пусть EditableCodePreview управляет */
padding: 0; /* Убираем padding чтобы EditableCodePreview занял всю площадь */
}
.header {
@@ -139,7 +141,7 @@
}
.modal-large .content {
max-height: 60vh;
max-height: 80vh;
}
}