fix: vertically center first install (#3501)

This commit is contained in:
Tiago Vasconcelos 2025-11-11 20:04:43 +00:00 committed by GitHub
parent a8c3181852
commit 0ec8139e5c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,4 +1,5 @@
<template id="page-first-install"> <template id="page-first-install">
<div class="fullscreen">
<div class="row q-col-gutter-md justify-center main first-install"> <div class="row q-col-gutter-md justify-center main first-install">
<div class="col-10 col-md-8 col-lg-6 q-gutter-y-md"> <div class="col-10 col-md-8 col-lg-6 q-gutter-y-md">
<q-card> <q-card>
@ -40,7 +41,8 @@
:rules="[ :rules="[
val => !val || val.length >= 8 || $t('invalid_password'), val => !val || val.length >= 8 || $t('invalid_password'),
val => val =>
val === loginData.password || $t('invalid_password_repeat') val === loginData.password ||
$t('invalid_password_repeat')
]" ]"
><template v-slot:append> ><template v-slot:append>
<q-icon <q-icon
@ -72,4 +74,5 @@
</q-card> </q-card>
</div> </div>
</div> </div>
</div>
</template> </template>