mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
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:
parent
2b3a0901aa
commit
20b0e14f72
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue