chore: minor ui improvements

This commit is contained in:
Liyas Thomas
2022-09-30 09:47:12 +05:30
parent 045dc10a0d
commit 1b23c5ea4a
33 changed files with 304 additions and 181 deletions

View File

@@ -7,25 +7,31 @@
@close="hideModal"
>
<template #body>
<div class="flex flex-col">
<label>
{{ t("confirm.request_change") }}
</label>
<div class="flex flex-col items-center justify-center">
{{ t("confirm.request_change") }}
</div>
</template>
<template #footer>
<span class="flex">
<span class="flex space-x-2">
<ButtonPrimary
v-focus
:label="t('action.save')"
outline
@click="saveApiChange"
/>
<ButtonSecondary
:label="t('action.dont_save')"
outline
filled
@click="discardApiChange"
/>
</span>
<ButtonSecondary :label="t('action.cancel')" @click="hideModal" />
<ButtonSecondary
:label="t('action.cancel')"
outline
filled
@click="hideModal"
/>
</template>
</SmartModal>
</template>