From 1bff64a2cf52d02d2455bb1b3a38034ff5ca1309 Mon Sep 17 00:00:00 2001 From: gsxdsm Date: Mon, 30 Mar 2026 23:24:07 -0700 Subject: [PATCH] fix(KB-258): add overflow auto to file editor textarea - Add overflow: auto to file-editor-textarea CSS class for scroll support - Ensure long file content is scrollable within the editor viewport --- .changeset/fix-file-editor-scroll.md | 5 +++++ packages/dashboard/app/styles.css | 1 + 2 files changed, 6 insertions(+) create mode 100644 .changeset/fix-file-editor-scroll.md diff --git a/.changeset/fix-file-editor-scroll.md b/.changeset/fix-file-editor-scroll.md new file mode 100644 index 000000000..7b71bf5b7 --- /dev/null +++ b/.changeset/fix-file-editor-scroll.md @@ -0,0 +1,5 @@ +--- +"@dustinbyrne/kb": patch +--- + +Fix file editor scrolling by adding `overflow: auto` to `.file-editor-textarea` CSS class. Users can now scroll through large files in the editor textarea. diff --git a/packages/dashboard/app/styles.css b/packages/dashboard/app/styles.css index 55bce72db..8235c1c06 100644 --- a/packages/dashboard/app/styles.css +++ b/packages/dashboard/app/styles.css @@ -6301,6 +6301,7 @@ html .column.drag-over * { border: none; outline: none; resize: none; + overflow: auto; white-space: pre; overflow-wrap: normal; tab-size: 2;