diff --git a/packages/editor-ui/src/n8n-theme.scss b/packages/editor-ui/src/n8n-theme.scss index 640f0a3ef9..1753f1ec17 100644 --- a/packages/editor-ui/src/n8n-theme.scss +++ b/packages/editor-ui/src/n8n-theme.scss @@ -303,7 +303,7 @@ h1, h2, h3, h4, h5, h6 { .el-input-number { background-color: $--custom-input-background; border-radius: 16px; - width: calc(100% - 20px); + width: 100%; .el-input-number__decrease, .el-input-number__increase { diff --git a/packages/editor-ui/src/views/NodeView.vue b/packages/editor-ui/src/views/NodeView.vue index 77c98581d8..63f95a73df 100644 --- a/packages/editor-ui/src/views/NodeView.vue +++ b/packages/editor-ui/src/views/NodeView.vue @@ -72,6 +72,7 @@ v-if="workflowRunning === true && !executionWaitingForWebhook" icon="stop" size="lg" + iconSize="md" class="stop-execution" type="light" :title="stopExecutionInProgress ? 'Stopping current execution':'Stop current execution'" @@ -84,6 +85,7 @@ class="stop-execution" icon="stop" size="lg" + iconSize="md" title="Stop waiting for Webhook call" type="light" :loading="stopExecutionInProgress" @@ -95,6 +97,7 @@ title="Deletes the current Execution Data." icon="trash" size="lg" + iconSize="md" @click.stop="clearExecutionData()" />