We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25d9d9a commit ec31084Copy full SHA for ec31084
css/panels.css
@@ -13,6 +13,7 @@
13
display: flex;
14
flex-direction: column;
15
flex-grow: 1;
16
+ height: 40px;
17
min-height: 133px;
18
}
19
js/interface/panels.ts
@@ -988,7 +988,7 @@ export class Panel extends EventSystem {
988
this.container.style.height = this.height + 'px';
989
this.container.classList.add('fixed_height');
990
} else {
991
- this.container.style.height = this.growable ? '0' : null;
+ this.container.style.height = null;
992
993
994
if (!this.fixed_height) this.container.classList.remove('fixed_height');
0 commit comments