fix(editor): fix run data footer overflow (#4175)

* fix: fix run data footer overflow

* fix(editor): fix output panel header overflow
This commit is contained in:
Alex Grozav 2022-09-26 13:02:14 +03:00 committed by GitHub
parent 2b3a0901aa
commit 20b0e14f72
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1299,6 +1299,9 @@ export default mixins(
margin-bottom: var(--spacing-s);
padding: var(--spacing-s) var(--spacing-s) 0 var(--spacing-s);
position: relative;
overflow-x: auto;
overflow-y: hidden;
min-height: calc(30px + var(--spacing-s));
> *:first-child {
flex-grow: 1;
@ -1378,6 +1381,13 @@ export default mixins(
align-items: center;
bottom: 0;
padding: 5px;
overflow: auto;
}
.pageSizeSelector {
text-transform: capitalize;
max-width: 150px;
flex: 0 1 auto;
}
.binaryIndex {
@ -1442,11 +1452,6 @@ export default mixins(
word-wrap: break-word;
}
.pageSizeSelector {
text-transform: capitalize;
max-width: 150px;
}
.displayModes {
display: flex;
justify-content: flex-end;