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