fix(ui): Improve readability on small devices
This commit is contained in:
parent
28224960a0
commit
45e0defe7e
|
@ -5,7 +5,7 @@
|
|||
<q-avatar>
|
||||
<q-img :src="avatar" style="min-height: 100%; min-width: 100%">
|
||||
<template #error>
|
||||
<img src="no-image.svg" style="height: 100%"/>
|
||||
<img src="no-image.svg" style="height: 100%" />
|
||||
</template>
|
||||
</q-img>
|
||||
</q-avatar>
|
||||
|
|
|
@ -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 = '';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue