fix(ui): Improve readability on small devices
This commit is contained in:
parent
28224960a0
commit
45e0defe7e
|
@ -103,7 +103,10 @@
|
||||||
</q-file>
|
</q-file>
|
||||||
</q-card-section>
|
</q-card-section>
|
||||||
<q-separator v-if="!newUser" />
|
<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
|
<PasswordInput
|
||||||
v-if="isCurrentUser"
|
v-if="isCurrentUser"
|
||||||
v-model="password"
|
v-model="password"
|
||||||
|
@ -236,7 +239,7 @@ export default defineComponent({
|
||||||
hasAvatar.value = true;
|
hasAvatar.value = true;
|
||||||
} else if (deleteAvatar.value) {
|
} else if (deleteAvatar.value) {
|
||||||
await userStore.deleteAvatar(changed);
|
await userStore.deleteAvatar(changed);
|
||||||
hasAvatar.value = false
|
hasAvatar.value = false;
|
||||||
}
|
}
|
||||||
password.value = '';
|
password.value = '';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue