From 775f6d291944d32f9850a286c4840ca6b95e3868 Mon Sep 17 00:00:00 2001 From: Michael Czechowski Date: Tue, 30 Dec 2025 19:57:03 +0100 Subject: [PATCH] style: show full instructions on mobile without scroll MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove max-height and overflow constraints from instructions - Instructions now expand fully on mobile devices 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/main.css | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/main.css b/src/main.css index d7518fe..5569abd 100644 --- a/src/main.css +++ b/src/main.css @@ -225,8 +225,6 @@ code, kbd { .instructions { padding: var(--spacing-md); - overflow-y: auto; - max-height: 45%; border-bottom: 1px solid var(--border-color); } @@ -1057,8 +1055,8 @@ input:checked + .toggle-slider::before { } .instructions { - max-height: 25vh; - overflow-y: auto; + max-height: none; + overflow-y: visible; } .editor-section {