Skip to content

Commit 3fa139e

Browse files
Fix border line with non-Islands themes and consistent panel spacing
- Add transparent colorCustomizations for activityBar.border and sideBar.border to prevent visible border lines when users use non-Islands base themes (e.g. Default Dark Modern) - Add consistent bottom margins to sidebar, editor, and bottom panel so all floating islands have equal spacing on all sides - Add overflow and max-height to bottom panel to match other panels
1 parent e465da5 commit 3fa139e

1 file changed

Lines changed: 10 additions & 4 deletions

File tree

settings.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
{
2+
"workbench.colorCustomizations": {
3+
"activityBar.border": "#00000000",
4+
"sideBar.border": "#00000000"
5+
},
26
"workbench.colorTheme": "Islands Dark",
37
"editor.fontFamily": "IBM Plex Mono",
48
"terminal.integrated.fontFamily": "FiraCode Nerd Font Mono",
@@ -13,10 +17,10 @@
1317
},
1418
".part.sidebar": {
1519
"font-family": "'Bear Sans UI', sans-serif !important",
16-
"margin": "8px 8px 0 20px",
20+
"margin": "8px 8px 8px 20px",
1721
"border-radius": "24px !important",
1822
"overflow": "hidden !important",
19-
"max-height": "calc(100% - 8px) !important",
23+
"max-height": "calc(100% - 16px) !important",
2024
"border-top": "1px solid rgba(255,255,255,0.1) !important",
2125
"border-left": "1px solid rgba(255,255,255,0.06) !important",
2226
"border-bottom": "1px solid rgba(255,255,255,0.02) !important",
@@ -99,7 +103,7 @@
99103
"outline": "none !important"
100104
},
101105
".part.editor": {
102-
"margin": "8px 8px 0 8px",
106+
"margin": "8px 8px 8px 8px",
103107
"border-radius": "24px !important",
104108
"overflow": "hidden !important",
105109
"max-height": "calc(100% - 16px) !important",
@@ -218,8 +222,10 @@
218222
"border-radius": "9999px !important"
219223
},
220224
".part.panel.bottom": {
221-
"margin": "0 8px",
225+
"margin": "8px 8px 8px 8px",
222226
"border-radius": "14px",
227+
"overflow": "hidden !important",
228+
"max-height": "calc(100% - 16px) !important",
223229
"border-top": "1px solid rgba(255,255,255,0.1) !important",
224230
"border-left": "1px solid rgba(255,255,255,0.06) !important",
225231
"border-bottom": "1px solid rgba(255,255,255,0.02) !important",

0 commit comments

Comments
 (0)