Merge pull request #12836 from Kilo-Org/Drixled/burrfish

fix(vscode): remove duplicate sidebar border
This commit is contained in:
Iván Uruchurtu
2026-08-03 23:47:33 -06:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"kilo-code": patch
---
Remove the duplicate border along the Kilo Code sidebar edge.
+1 -1
View File
@@ -4797,7 +4797,7 @@ export class KiloProvider implements vscode.WebviewViewProvider, TelemetryProper
workerUri: webview.asWebviewUri(vscode.Uri.joinPath(this.extensionUri, "dist", "shiki-worker.js")),
title: "Kilo Code",
port: this.connectionService.getServerInfo()?.port,
extraStyles: `.container { height: 100%; display: flex; flex-direction: column; height: 100vh; border-right: 1px solid var(--border-weak-base); }`,
extraStyles: `.container { height: 100vh; }`,
})
}