summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam <[email protected]>2025-12-29 06:31:57 -0600
committerAdam <[email protected]>2025-12-29 07:03:44 -0600
commit5b02a3029e33f614aa886dde0b72ca27bf601f19 (patch)
tree7407db1d95b3668618785ca5bd52c3ff44fb9b6f
parent94e851c2a2c38b1bde8fb30fd3f18acc5426c43b (diff)
downloadopencode-5b02a3029e33f614aa886dde0b72ca27bf601f19.tar.gz
opencode-5b02a3029e33f614aa886dde0b72ca27bf601f19.zip
fix(desktop): max height on edit tool calls
-rw-r--r--packages/ui/src/components/message-part.css8
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/ui/src/components/message-part.css b/packages/ui/src/components/message-part.css
index cf784fd52..a58e76890 100644
--- a/packages/ui/src/components/message-part.css
+++ b/packages/ui/src/components/message-part.css
@@ -245,6 +245,14 @@
[data-component="edit-content"] {
border-top: 1px solid var(--border-weaker-base);
+ max-height: 420px;
+ overflow-y: auto;
+
+ scrollbar-width: none;
+ -ms-overflow-style: none;
+ &::-webkit-scrollbar {
+ display: none;
+ }
}
[data-component="write-content"] {