Skip to content

Commit

Permalink
fix: レスポンシブ調整 (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
nacika-ins authored Sep 20, 2024
2 parents adbdb9f + 5556ac6 commit 9d65d1a
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion packages/frontend/src/pages/messaging/messaging-room.message.vue
Original file line number Diff line number Diff line change
Expand Up @@ -548,9 +548,22 @@ async function onPointerup(ev: PointerEvent): Promise<void> {
@container (min-width: 250px) {
.richcontent {
min-width: 200px;
min-width: 140px;
}
}
@container (min-width: 320px) {
.richcontent {
min-width: 150px;
}
}
@container (min-width: 390px) {
.richcontent {
min-width: 250px;
}
}
@container (min-width: 400px) {
.richcontent {
min-width: 250px;
Expand Down

0 comments on commit 9d65d1a

Please sign in to comment.