File tree Expand file tree Collapse file tree
packages/opencode/src/cli/cmd/tui/routes/session Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -65,7 +65,15 @@ function EditBody(props: { request: PermissionRequest }) {
6565 return (
6666 < box flexDirection = "column" gap = { 1 } >
6767 < Show when = { diff ( ) } >
68- < scrollbox height = "100%" >
68+ < scrollbox
69+ height = "100%"
70+ verticalScrollbarOptions = { {
71+ trackOptions : {
72+ backgroundColor : theme . background ,
73+ foregroundColor : theme . borderActive ,
74+ } ,
75+ } }
76+ >
6977 < diff
7078 diff = { diff ( ) }
7179 view = { view ( ) }
Original file line number Diff line number Diff line change @@ -80,7 +80,15 @@ export function Sidebar(props: { sessionID: string; overlay?: boolean }) {
8080 paddingRight = { 2 }
8181 position = { props . overlay ? "absolute" : "relative" }
8282 >
83- < scrollbox flexGrow = { 1 } >
83+ < scrollbox
84+ flexGrow = { 1 }
85+ verticalScrollbarOptions = { {
86+ trackOptions : {
87+ backgroundColor : theme . background ,
88+ foregroundColor : theme . borderActive ,
89+ } ,
90+ } }
91+ >
8492 < box flexShrink = { 0 } gap = { 1 } paddingRight = { 1 } >
8593 < box paddingRight = { 1 } >
8694 < text fg = { theme . text } >
You can’t perform that action at this time.
0 commit comments