Fix spacing between text and icon

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl 2019-12-23 12:35:45 +01:00
parent 8ec66d1e95
commit 5f3e3aee98
No known key found for this signature in database
GPG Key ID: 4C614C6ED2CDE6DF
3 changed files with 6 additions and 4 deletions

View File

@ -30,7 +30,7 @@
@input="updateOperation" /> @input="updateOperation" />
</Operation> </Operation>
<div class="buttons"> <div class="buttons">
<button class="status-button icon" <button class="status-button icon"
:class="ruleStatus.class" :class="ruleStatus.class"
@click="saveRule"> @click="saveRule">
{{ ruleStatus.title }} {{ ruleStatus.title }}
@ -42,7 +42,9 @@
{{ t('workflowengine', 'Delete') }} {{ t('workflowengine', 'Delete') }}
</button> </button>
</div> </div>
<p v-if="error" class="error-message">{{ error }}</p> <p v-if="error" class="error-message">
{{ error }}
</p>
</div> </div>
</div> </div>
</template> </template>

View File

@ -99,7 +99,7 @@ const store = new Vuex.Store({
events, events,
name: '', // unused in the new ui, there for legacy reasons name: '', // unused in the new ui, there for legacy reasons
checks: [ checks: [
{ class: null, operator: null, value: '' } { class: null, operator: null, value: '' },
], ],
operation: rule.operation || '', operation: rule.operation || '',
}) })

View File

@ -16,7 +16,7 @@
background-size: 50px 50px; background-size: 50px 50px;
background-position: center center; background-position: center center;
margin-top: 10px; margin-top: 10px;
margin-bottom: 20px; margin-bottom: 10px;
background-repeat: no-repeat; background-repeat: no-repeat;
} }
.actions__item__description { .actions__item__description {