From 5279aeb34c196aa566789f5bc26f087677b7b426 Mon Sep 17 00:00:00 2001 From: Jeff Witt <1848307+wittjeff@users.noreply.github.com> Date: Wed, 20 May 2026 09:15:51 -0400 Subject: [PATCH] fix(client): remove forced 1px size on editor screen-reader textarea (#67454) Co-authored-by: Claude Opus 4.7 (1M context) --- client/src/templates/Challenges/classic/editor.css | 6 ------ 1 file changed, 6 deletions(-) diff --git a/client/src/templates/Challenges/classic/editor.css b/client/src/templates/Challenges/classic/editor.css index 9480a784f72..c45f40ceb00 100644 --- a/client/src/templates/Challenges/classic/editor.css +++ b/client/src/templates/Challenges/classic/editor.css @@ -21,12 +21,6 @@ z-index: 11; } -/* NVDA skips the textarea in browse mode if there is no size */ -textarea.inputarea { - width: 1px !important; - height: 1px !important; -} - .editor-container { background: var(--editor-background); }