Desktop Width constraint set to 900px
This commit is contained in:
parent
21f02a8149
commit
6221eaa1bc
5 changed files with 15 additions and 7 deletions
|
|
@ -70,7 +70,11 @@
|
|||
</v-container>
|
||||
|
||||
<!-- edit password dialog -->
|
||||
<v-dialog v-model="showEditPasswordDialog" class="ma-0 pa-0" width="50%">
|
||||
<v-dialog
|
||||
v-model="showEditPasswordDialog"
|
||||
class="ma-0 pa-0"
|
||||
:width="$vuetify.breakpoint.smAndUp ? '940px' : '80%'"
|
||||
>
|
||||
<v-card :disabled="settingPassword">
|
||||
<v-card-title>{{ $t("profile.change_password") }}</v-card-title>
|
||||
<v-card-text>
|
||||
|
|
@ -119,7 +123,11 @@
|
|||
</v-dialog>
|
||||
|
||||
<!-- edit display name dialog -->
|
||||
<v-dialog v-model="showEditDisplaynameDialog" class="ma-0 pa-0" width="50%">
|
||||
<v-dialog
|
||||
v-model="showEditDisplaynameDialog"
|
||||
class="ma-0 pa-0"
|
||||
:width="$vuetify.breakpoint.smAndUp ? '940px' : '80%'"
|
||||
>
|
||||
<v-card>
|
||||
<v-card-title>{{ $t("profile.display_name") }}</v-card-title>
|
||||
<v-card-text>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue