Skip to content

Commit 11c882b

Browse files
committed
fix(web): constrain message width on mobile
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: e81ca143-aede-4ac6-8053-08f1bbbd2722
1 parent 635b08b commit 11c882b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ onBeforeUnmount(() => {
475475
</VListItem>
476476
</VList>
477477
</VMenu>
478-
<div style="max-width: 50%">
478+
<div :style="{ maxWidth: !mdAndUp ? '50%' : '100%' }">
479479
<VCard
480480
rounded="shaped"
481481
:variant="isMT(message) ? 'flat' : 'tonal'"

0 commit comments

Comments
 (0)