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

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-25 15:27:03 +01:00
parent 2f48917f3a
commit 3c34cea37b

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);
} }