fix: add minimum height for code editor on mobile

- Set min-height: 200px for editor-section
- Set min-height: 150px for editor-content
- Ensures editor is usable on small screens
This commit is contained in:
2025-12-25 15:27:03 +01:00
parent 8949d5e709
commit eb67d733d6

View File

@@ -988,6 +988,14 @@ input:checked + .toggle-slider::before {
max-height: 30vh; max-height: 30vh;
} }
.editor-section {
min-height: 200px;
}
.editor-content {
min-height: 150px;
}
.preview-wrapper { .preview-wrapper {
margin: var(--spacing-sm); margin: var(--spacing-sm);
} }