Compare commits
2 commits
36e4b61581
...
b5cde8ed85
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b5cde8ed85 | ||
|
|
1105f578e4 |
1 changed files with 5 additions and 1 deletions
|
|
@ -1037,7 +1037,11 @@ div.modal.modal-wide {
|
||||||
|
|
||||||
.tab-pane {
|
.tab-pane {
|
||||||
padding: var(--space-s);
|
padding: var(--space-s);
|
||||||
max-height: 12rem;
|
/* Fixed height (not max-height) so the strip stays the same size
|
||||||
|
regardless of how much content the active tab has. The console
|
||||||
|
tab's flex layout reserves full height for the input pin; the
|
||||||
|
log and files tabs use scrollable overflow. */
|
||||||
|
height: 18rem;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
.tab-pane[hidden] { display: none; }
|
.tab-pane[hidden] { display: none; }
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue