Skip to content

Commit 02ddbf8

Browse files
AchoArnoldCopilot
andcommitted
fix(web): update hardcoded media queries to Vuetify 4 breakpoints
Replace old Vuetify 2 breakpoint values (1264px, 1904px) with Vuetify 4 defaults (1280px, 1920px) in threads page media queries. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 9a46c6f commit 02ddbf8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

web/app/pages/threads/[id]/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -507,12 +507,12 @@ onBeforeUnmount(() => {
507507
max-width: 900px;
508508
}
509509
}
510-
@media (min-width: 1264px) {
510+
@media (min-width: 1280px) {
511511
.messages-body {
512512
max-width: 1185px;
513513
}
514514
}
515-
@media (min-width: 1904px) {
515+
@media (min-width: 1920px) {
516516
.messages-body {
517517
max-width: 1785px;
518518
}

0 commit comments

Comments
 (0)