fix(appdash): use banner height CSS variable for terminal layout and expose terminal resize handling
This commit is contained in:
@@ -106,11 +106,11 @@ export class DeesWorkspaceTerminal extends DeesElement {
|
||||
css`
|
||||
:host {
|
||||
background: ${cssManager.bdTheme('#ffffff', '#000000')};
|
||||
position: absolute;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
box-sizing: border-box;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
* {
|
||||
@@ -596,7 +596,7 @@ export class DeesWorkspaceTerminal extends DeesElement {
|
||||
tab.terminal.focus();
|
||||
}
|
||||
|
||||
private handleResize(): void {
|
||||
public handleResize(): void {
|
||||
if (this.activeTabId) {
|
||||
const tab = this.tabManager.getTab(this.activeTabId);
|
||||
if (tab) {
|
||||
|
||||
Reference in New Issue
Block a user