From 3cbb4047818ae1c291f717c88e44ea2056bfcbe8 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 - Set min-height: 200px for editor-section - Set min-height: 150px for editor-content - Ensures editor is usable on small screens --- 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); }