mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-26 21:19:43 -08:00
fix positioning
This commit is contained in:
parent
aae79879f7
commit
ed1aa8df4b
|
@ -69,6 +69,7 @@
|
|||
</n8n-text>
|
||||
</div>
|
||||
|
||||
<div :class="$style.dataContainer">
|
||||
<div v-if="!hasNodeRun" :class="$style.center">
|
||||
<div v-if="workflowRunning">
|
||||
<div :class="$style.spinner"><n8n-spinner /></div>
|
||||
|
@ -184,6 +185,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
@ -724,6 +726,8 @@ export default mixins(
|
|||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: var(--color-background-light);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.header {
|
||||
|
@ -737,16 +741,21 @@ export default mixins(
|
|||
}
|
||||
}
|
||||
|
||||
.dataContainer {
|
||||
position: relative;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.dataDisplay {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
top: 130px;
|
||||
top: 0;
|
||||
left: 0;
|
||||
padding-left: var(--spacing-s);
|
||||
right: 0;
|
||||
overflow-y: auto;
|
||||
line-height: 1.5;
|
||||
word-break: normal;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.tableDisplay {
|
||||
|
|
Loading…
Reference in a new issue