From 5090e0eb5e7b5de5170b56664cc6d35ab408e6db Mon Sep 17 00:00:00 2001 From: webbrain-one <295484252+webbrain-one@users.noreply.github.com> Date: Fri, 7 Aug 2026 17:53:03 +0300 Subject: [PATCH] Fix code scrolling in web editor Enable scrolling for copied HTML/CSS code blocks. Previously, code remained static even when scrollbars were visible. --- web_editor/style.css | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/web_editor/style.css b/web_editor/style.css index b63e27e..6f257a0 100644 --- a/web_editor/style.css +++ b/web_editor/style.css @@ -113,15 +113,14 @@ fieldset{ textarea { width: 300px; - height: 100px; - min-height: 250px; + height: 250px; background-color: #000; - overflow: scroll; + overflow: auto; margin: auto; - display: flex; background: #f4f4f9; outline: none; font-size: 14px; + resize: vertical; }