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;