Merge branch 'master' of http://git.digital-tps.tk/TPS/birzha-legalizasia-frontend
This commit is contained in:
commit
4fbcd19a4a
|
|
@ -156,5 +156,10 @@ onMounted(() => {
|
|||
.custom-btns {
|
||||
min-width: 128px;
|
||||
}
|
||||
.form-check-input[type="radio"],
|
||||
.login .login__input,
|
||||
.form-select {
|
||||
border-color: rgb(var(--color-slate-400) / var(--tw-border-opacity));;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
|
@ -61,14 +61,21 @@
|
|||
</template>
|
||||
</div>
|
||||
<div class="intro-x mt-5 xl:mt-8 text-center xl:text-left">
|
||||
<button class="btn btn-primary py-3 px-4 w-full xl:w-32 xl:mr-3 align-top" @click.prevent="onUpdate">
|
||||
<button class="btn btn-primary py-3 px-4 xl:mr-3 align-top w-full custom-btns" @click.prevent="onUpdate">
|
||||
{{ $t('UPDATE') }}
|
||||
<LoadingIcon icon="oval" color="white" class="w-4 h-4 ml-2" v-if="isLoading" />
|
||||
</button>
|
||||
<button class="btn btn-outline-secondary py-3 px-4 w-full xl:w-32 mt-3 xl:mt-0 align-top"
|
||||
@click.prevent="onLogin">
|
||||
</div>
|
||||
<div class="intro-x mt-5 xl:mt-8 text-primary xl:text-left">
|
||||
<p class="w-full text-center">
|
||||
<a
|
||||
@click.prevent="onLogin"
|
||||
href="#"
|
||||
class="font-bold underline"
|
||||
>
|
||||
{{ $t('SIGN_IN') }}
|
||||
</button>
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -163,3 +170,14 @@ onMounted(() => {
|
|||
dom("body").removeClass("main").removeClass("error-page").addClass("login");
|
||||
});
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.custom-btns {
|
||||
min-width: 128px;
|
||||
}
|
||||
.form-check-input[type="radio"],
|
||||
.login .login__input,
|
||||
.form-select {
|
||||
border-color: rgb(var(--color-slate-400) / var(--tw-border-opacity));;
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
Loading…
Reference in New Issue