feat: improve terminal and monitoring styling
This commit is contained in:
@@ -130,10 +130,17 @@ class DrawerComponent {
|
||||
|
||||
// Open drawer
|
||||
this.detailsDrawer.classList.add('open');
|
||||
// Inform terminal container that the drawer is open for alignment
|
||||
if (this.terminalPanelContainer) {
|
||||
this.terminalPanelContainer.classList.add('drawer-open');
|
||||
}
|
||||
}
|
||||
|
||||
closeDrawer() {
|
||||
if (this.detailsDrawer) this.detailsDrawer.classList.remove('open');
|
||||
if (this.terminalPanelContainer) {
|
||||
this.terminalPanelContainer.classList.remove('drawer-open');
|
||||
}
|
||||
|
||||
// Call close callback if provided
|
||||
if (this.onCloseCallback) {
|
||||
|
||||
Reference in New Issue
Block a user