Skip to content

Commit b9624a8

Browse files
author
Lasim
committed
style(frontend): remove max-width from content area in settings and profile
1 parent c144d10 commit b9624a8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

services/frontend/src/views/admin/settings/[type].vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ async function handleSubmit(event: Event) {
336336
</aside>
337337

338338
<!-- Content Area -->
339-
<div class="flex-1 md:max-w-3xl">
339+
<div class="flex-1">
340340

341341
<div v-if="isLoading" class="text-muted-foreground">{{ t('globalSettings.loading') }}</div>
342342
<div v-else-if="error" class="text-red-500">{{ t('globalSettings.errors.loadSettings') }}: {{ error }}</div>

services/frontend/src/views/user/Profile.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ async function handleProfileSubmit(event: Event) {
160160
</aside>
161161

162162
<!-- Content Area -->
163-
<div class="flex-1 md:max-w-3xl">
163+
<div class="flex-1">
164164
<!-- Loading State -->
165165
<div v-if="isLoading" class="text-muted-foreground py-8 text-center">
166166
{{ t('userAccount.messages.loading') }}

services/frontend/src/views/user/Security.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ async function handleSecuritySubmit(event: Event) {
170170
</aside>
171171

172172
<!-- Content Area -->
173-
<div class="flex-1 md:max-w-3xl">
173+
<div class="flex-1">
174174
<!-- Loading State -->
175175
<div v-if="isLoading" class="text-muted-foreground py-8 text-center">
176176
{{ t('userAccount.messages.loading') }}

0 commit comments

Comments
 (0)