fix(ui): Improve readability on small devices

This commit is contained in:
Ferdinand Thiessen 2021-12-02 18:40:54 +01:00
parent 28224960a0
commit 45e0defe7e
2 changed files with 6 additions and 3 deletions

View File

@ -103,7 +103,10 @@
</q-file>
</q-card-section>
<q-separator v-if="!newUser" />
<q-card-section v-if="!newUser" class="fit row justify-start content-center items-center">
<q-card-section
v-if="!newUser"
class="fit row justify-start content-center items-center q-gutter-y-md"
>
<PasswordInput
v-if="isCurrentUser"
v-model="password"
@ -236,7 +239,7 @@ export default defineComponent({
hasAvatar.value = true;
} else if (deleteAvatar.value) {
await userStore.deleteAvatar(changed);
hasAvatar.value = false
hasAvatar.value = false;
}
password.value = '';
}