Skip to content

Commit

Permalink
fix(client): 画面サイズが小さくなるとチャットインジケーターの位置が間違ってしまう問題
Browse files Browse the repository at this point in the history
  • Loading branch information
noridev committed Jun 8, 2023
1 parent 7342ec9 commit 4b18121
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions packages/frontend/src/pages/messaging/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ definePageMetadata({
}
> div {
padding: 20px 30px;
padding: 25px 30px;
&:after {
content: "";
Expand All @@ -216,7 +216,7 @@ definePageMetadata({
.indicator {
position: absolute;
top: 36px;
top: 41px;
left: 12px;
color: var(--indicator);
font-size: 9px;
Expand Down Expand Up @@ -271,11 +271,16 @@ definePageMetadata({
@container (max-width: 500px) {
.message {
> div {
padding: 15px 20px;
padding: 20px 30px;
font-size: .9em;
}
}
.indicator {
top: 36px;
left: 12px;
}
.avatar {
margin: 0 12px 0 0;
}
Expand Down

1 comment on commit 4b18121

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Chromatic detects changes. Please review the changes on Chromatic.

Please sign in to comment.