File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 88 </ head >
99 < body >
1010 < div id ="app ">
11+ < div id ="titleBar "> </ div >
12+ < div id ="banner "> </ div >
1113 < div style ="display: flex; gap: 20px; ">
1214 < div style ="display: flex; flex: none; border: 1px solid var(--vscode-editorWidget-border) ">
1315 < div id ="activityBar "> </ div >
Original file line number Diff line number Diff line change @@ -111,6 +111,8 @@ export async function clearStorage (): Promise<void> {
111111await initializeVscodeExtensions ( )
112112
113113for ( const { part, element } of [
114+ { part : Parts . TITLEBAR_PART , element : '#titleBar' } ,
115+ { part : Parts . BANNER_PART , element : '#banner' } ,
114116 { part : Parts . SIDEBAR_PART , element : '#sidebar' } ,
115117 { part : Parts . ACTIVITYBAR_PART , element : '#activityBar' } ,
116118 { part : Parts . PANEL_PART , element : '#panel' } ,
Original file line number Diff line number Diff line change 3737 width : 100% ;
3838 height : 55vh ;
3939}
40+
41+ # titleBar {
42+ position : relative;
43+ }
You can’t perform that action at this time.
0 commit comments