Update embeds.vue

I add a margin in between the 2 buttons.
This commit is contained in:
DibyaJyoti Parida 2024-10-13 08:18:44 +05:30 committed by GitHub
parent 026c5a02ec
commit d77a046ff7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,7 +17,7 @@
<ds-text>
{{ $t('settings.embeds.status.change.question') }}
</ds-text>
<base-button @click="submit" :filled="!disabled" :disabled="!disabled">
<base-button @click="submit" :filled="!disabled" :disabled="!disabled" style="margin-right: 5px;">
{{ $t('settings.embeds.status.change.deny') }}
</base-button>
<base-button @click="submit" :filled="disabled" :disabled="disabled">
@ -54,6 +54,7 @@ export default {
data() {
return {
disabled: null,
print: true,
providers: [],
}
},