fix positioning

This commit is contained in:
Mutasem 2022-03-29 20:58:27 +02:00
parent aae79879f7
commit ed1aa8df4b

View file

@ -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 {