Skip to content

Commit

Permalink
fix(editor): fix run data footer overflow (#4175)
Browse files Browse the repository at this point in the history
* fix: fix run data footer overflow

* fix(editor): fix output panel header overflow
  • Loading branch information
alexgrozav authored Sep 26, 2022
1 parent 2b3a090 commit 20b0e14
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions packages/editor-ui/src/components/RunData.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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 {
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 20b0e14

Please sign in to comment.