Hide assistant gutter

This commit is contained in:
Nathan Sobo
2023-05-26 15:38:03 -06:00
parent 8f6e67f440
commit 3904971bd8
7 changed files with 38 additions and 3 deletions
+2
View File
@@ -22,6 +22,7 @@ import { ColorScheme } from "../themes/common/colorScheme"
import feedback from "./feedback"
import welcome from "./welcome"
import copilot from "./copilot"
import assistant from "./assistant"
export default function app(colorScheme: ColorScheme): Object {
return {
@@ -50,6 +51,7 @@ export default function app(colorScheme: ColorScheme): Object {
simpleMessageNotification: simpleMessageNotification(colorScheme),
tooltip: tooltip(colorScheme),
terminal: terminal(colorScheme),
assistant: assistant(colorScheme),
feedback: feedback(colorScheme),
colorScheme: {
...colorScheme,
+13
View File
@@ -0,0 +1,13 @@
import { ColorScheme } from "../themes/common/colorScheme"
import editor from "./editor"
export default function assistant(colorScheme: ColorScheme) {
return {
container: {
background: editor(colorScheme).background,
padding: {
left: 10,
}
}
}
}