fix(appdash): use banner height CSS variable for terminal layout and expose terminal resize handling

This commit is contained in:
2026-04-02 19:13:31 +00:00
parent c0ac8f593a
commit c13f319474
4 changed files with 13 additions and 15 deletions

View File

@@ -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) {