diff options
Diffstat (limited to 'apps/workflowengine/src/components/Check.vue')
-rw-r--r-- | apps/workflowengine/src/components/Check.vue | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/apps/workflowengine/src/components/Check.vue b/apps/workflowengine/src/components/Check.vue index fe099b8076b..10828c1dd8a 100644 --- a/apps/workflowengine/src/components/Check.vue +++ b/apps/workflowengine/src/components/Check.vue @@ -35,7 +35,7 @@ class="option" @input="updateCheck"> <Actions v-if="deleteVisible || !currentOption"> - <ActionButton icon="icon-delete" @click="$emit('remove')" /> + <ActionButton icon="icon-close" @click="$emit('remove')" /> </Actions> </div> </template> @@ -139,7 +139,7 @@ export default { flex-wrap: wrap; width: 100%; padding-right: 20px; - & > *:not(.icon-delete) { + & > *:not(.close) { width: 180px; } & > .comparator { @@ -170,14 +170,12 @@ export default { ::placeholder { font-size: 10px; } - .icon-delete { + button.action-item.action-item--single.icon-close { + height: 44px; + width: 44px; margin-top: -5px; margin-bottom: -5px; } - button.action-item.action-item--single.icon-delete { - height: 34px; - width: 34px; - } .invalid { border: 1px solid var(--color-error) !important; } |