File tree 2 files changed +8
-0
lines changed
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -342,6 +342,8 @@ button.small .icon {
342
342
flex-grow : 2 ;
343
343
height : 100% ;
344
344
cursor : grab;
345
+ position : absolute;
346
+ width : 100% ;
345
347
}
346
348
347
349
# panel # drag-handle : active {
@@ -357,6 +359,7 @@ button.small .icon {
357
359
gap : 10px ;
358
360
align-self : stretch;
359
361
background : # 008184 ;
362
+ position : relative;
360
363
}
361
364
362
365
.panel-bar # connection-status {
@@ -372,6 +375,9 @@ button.small .icon {
372
375
filter : invert (1 );
373
376
}
374
377
378
+ .panel-bar .spacer {
379
+ flex-grow : 1 ;
380
+ }
375
381
.panel-bar .term-operations {
376
382
transition : opacity 0.15s ;
377
383
display : flex;
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ function ReplPanel(state, emit) {
22
22
< img src ="media/connect.svg " />
23
23
< div > ${ state . isConnected ? 'Connected to ' + state . connectedPort : '' } </ div >
24
24
</ div >
25
+ < div class ="spacer "> </ div >
25
26
< div id ="drag-handle "
26
27
onmousedown =${ ( ) => emit ( 'start-resizing-panel' ) }
27
28
onmouseup =${ ( ) => emit ( 'stop-resizing-panel' ) }
@@ -34,6 +35,7 @@ function ReplPanel(state, emit) {
34
35
size : 'small' ,
35
36
onClick : onToggle
36
37
} ) }
38
+
37
39
</ div >
38
40
< div class =${ terminalDisabledClass } >
39
41
${ state . cache ( XTerm , 'terminal' ) . render ( ) }
You can’t perform that action at this time.
0 commit comments