Skip to content

Commit

Permalink
chore: update locale and styles related to layout
Browse files Browse the repository at this point in the history
  • Loading branch information
KabinKhandThakuri committed Jan 17, 2025
1 parent 4dee173 commit 5a81889
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/vue-layout/src/assets/css/layouts/basic.css
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
}

@media screen and (min-width: 1200px) {
.layout.basic > :is(footer, header, main) {
.layout.basic > :is(footer, main) {
padding-left: 2rem;
padding-right: 2rem;
}
Expand Down
3 changes: 3 additions & 0 deletions packages/vue-user/src/components/DropdownUserMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,9 @@ nav.user-menu-dropdown > ul.dropdown {
}
nav.user-menu-dropdown.expanded > ul.dropdown {
display: flex;
flex-direction: column;
gap: 0.25rem;
height: auto;
max-height: 10rem;
overflow-y: hidden;
Expand Down
6 changes: 4 additions & 2 deletions packages/vue-user/src/locales/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"submit": {
"label": "Change password"
}
}
},
"title": "Change password"
},
"emailVerification": {
"button": {
Expand Down Expand Up @@ -251,7 +252,8 @@
"submit": {
"label": "Change password"
}
}
},
"title": "Change password"
},
"emailVerification": {
"button": {
Expand Down
2 changes: 1 addition & 1 deletion packages/vue-user/src/views/ChangePassword.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<Page :title="t('user.login.title')" class="auth change-password">
<Page :title="t('user.changePassword.title')" class="auth change-password">
<Errors v-if="errors.length" :errors="errors" />

<slot name="instructions"></slot>
Expand Down
2 changes: 2 additions & 0 deletions packages/vue-user/src/views/Profile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,7 @@ const { t } = useI18n({ messages });
display: flex;
flex-direction: column;
gap: 1rem;
margin-top: 1rem;
padding: 0;
}
</style>

0 comments on commit 5a81889

Please sign in to comment.