chore: improve ui consistency
This commit is contained in:
@@ -32,6 +32,7 @@
|
|||||||
<ButtonSecondary
|
<ButtonSecondary
|
||||||
:label="`${t('action.cancel')}`"
|
:label="`${t('action.cancel')}`"
|
||||||
outline
|
outline
|
||||||
|
filled
|
||||||
@click="hideModal"
|
@click="hideModal"
|
||||||
/>
|
/>
|
||||||
</span>
|
</span>
|
||||||
|
|||||||
@@ -104,9 +104,15 @@
|
|||||||
<span class="flex space-x-2">
|
<span class="flex space-x-2">
|
||||||
<ButtonPrimary
|
<ButtonPrimary
|
||||||
:label="`${t('action.save')}`"
|
:label="`${t('action.save')}`"
|
||||||
|
outline
|
||||||
@click="saveEnvironment"
|
@click="saveEnvironment"
|
||||||
/>
|
/>
|
||||||
<ButtonSecondary :label="`${t('action.cancel')}`" @click="hideModal" />
|
<ButtonSecondary
|
||||||
|
:label="`${t('action.cancel')}`"
|
||||||
|
outline
|
||||||
|
filled
|
||||||
|
@click="hideModal"
|
||||||
|
/>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
</SmartModal>
|
</SmartModal>
|
||||||
|
|||||||
@@ -117,9 +117,15 @@
|
|||||||
<ButtonPrimary
|
<ButtonPrimary
|
||||||
:label="`${t('action.save')}`"
|
:label="`${t('action.save')}`"
|
||||||
:loading="isLoading"
|
:loading="isLoading"
|
||||||
|
outline
|
||||||
@click="saveEnvironment"
|
@click="saveEnvironment"
|
||||||
/>
|
/>
|
||||||
<ButtonSecondary :label="`${t('action.cancel')}`" @click="hideModal" />
|
<ButtonSecondary
|
||||||
|
:label="`${t('action.cancel')}`"
|
||||||
|
outline
|
||||||
|
filled
|
||||||
|
@click="hideModal"
|
||||||
|
/>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
</SmartModal>
|
</SmartModal>
|
||||||
|
|||||||
@@ -1,14 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="flex flex-col items-center justify-center min-h-screen">
|
<div class="flex flex-col items-center justify-center min-h-screen">
|
||||||
<div v-if="signingInWithEmail">
|
<SmartSpinner v-if="signingInWithEmail" />
|
||||||
<SmartSpinner />
|
<AppLogo v-else class="w-16 h-16 rounded" />
|
||||||
<div class="mt-2 text-sm text-secondaryLight">
|
|
||||||
{{ t("state.loading") }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div v-else>
|
|
||||||
<AppLogo class="w-16 h-16 rounded" />
|
|
||||||
</div>
|
|
||||||
<pre v-if="error" class="mt-4 text-secondaryLight">{{ error }}</pre>
|
<pre v-if="error" class="mt-4 text-secondaryLight">{{ error }}</pre>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user