mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix spacing
This commit is contained in:
parent
f89af6787e
commit
d31e653a55
|
@ -35,7 +35,10 @@
|
||||||
</n8n-select>
|
</n8n-select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<n8n-tabs v-model="outputIndex" v-if="maxOutputIndex > 0" :options="branches" />
|
<div v-if="maxOutputIndex > 0" :class="{[$style.tabs]: displayMode === 'table'}">
|
||||||
|
<n8n-tabs v-model="outputIndex" :options="branches" />
|
||||||
|
</div>
|
||||||
|
|
||||||
<div v-else-if="hasNodeRun && dataCount > 0 && maxRunIndex === 0" :class="$style.itemsCount">
|
<div v-else-if="hasNodeRun && dataCount > 0 && maxRunIndex === 0" :class="$style.itemsCount">
|
||||||
<n8n-text>
|
<n8n-text>
|
||||||
{{ dataCount }} {{ $locale.baseText(dataCount === 1 ? 'ndv.output.item' : 'ndv.output.items') }}
|
{{ dataCount }} {{ $locale.baseText(dataCount === 1 ? 'ndv.output.item' : 'ndv.output.items') }}
|
||||||
|
@ -852,7 +855,6 @@ export default mixins(
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
padding-left: var(--spacing-s);
|
padding-left: var(--spacing-s);
|
||||||
padding-top: var(--spacing-s);
|
|
||||||
right: 0;
|
right: 0;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
|
@ -864,6 +866,11 @@ export default mixins(
|
||||||
.jsonDisplay {
|
.jsonDisplay {
|
||||||
composes: dataDisplay;
|
composes: dataDisplay;
|
||||||
background-color: var(--color-background-base);
|
background-color: var(--color-background-base);
|
||||||
|
padding-top: var(--spacing-s);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tabs {
|
||||||
|
margin-bottom: var(--spacing-s);
|
||||||
}
|
}
|
||||||
|
|
||||||
.table {
|
.table {
|
||||||
|
@ -891,6 +898,7 @@ export default mixins(
|
||||||
|
|
||||||
.itemsCount {
|
.itemsCount {
|
||||||
margin-left: var(--spacing-s);
|
margin-left: var(--spacing-s);
|
||||||
|
margin-bottom: var(--spacing-s);
|
||||||
}
|
}
|
||||||
|
|
||||||
.runSelector {
|
.runSelector {
|
||||||
|
|
Loading…
Reference in a new issue