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

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,
}
}
}
}