We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa0064b commit 47e5458Copy full SHA for 47e5458
web/css/index.css
@@ -179,7 +179,6 @@ body {
179
180
@media (max-width: 992px) {
181
#scriptsPanel {
182
- display: flex;
183
flex-flow: column;
184
}
185
@@ -197,8 +196,16 @@ body {
197
196
198
199
#script-panel-container {
200
- flex-grow: 1;
+ flex: 1 1 auto;
201
display: flex;
+
202
+ /* (firefox)
203
+ we have to specify min-size explicitly, because by default it's content size.
204
+ It means, that when child content is larger than parent, it will grow out of parent
205
+ See https://drafts.csswg.org/css-flexbox/#min-size-auto
206
+ and https://bugzilla.mozilla.org/show_bug.cgi?id=1114904
207
+ */
208
+ min-height: 0;
209
210
211
#script-panel-container.collapsed {
0 commit comments