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 5ec56e52fc
commit 3cbb404781

View File

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