From 3c34cea37b904142830d30ac51afa0152ba492ff Mon Sep 17 00:00:00 2001 From: Michael Czechowski Date: Thu, 25 Dec 2025 15:27:03 +0100 Subject: [PATCH] fix: add minimum height for code editor on mobile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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 --- src/main.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/main.css b/src/main.css index 1036e74..89ba50a 100644 --- a/src/main.css +++ b/src/main.css @@ -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); }