Skip to content

Commit 3cc1d4a

Browse files
committed
(UI) fix card background overflow
1 parent 5846891 commit 3cc1d4a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/ChatWindow/MessagesList.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,6 +356,7 @@ export default {
356356
padding: 0 16px;
357357
position: relative;
358358
height: 64px;
359+
margin-right: 1px;
359360
}
360361
361362
.room-avatar {
@@ -440,6 +441,7 @@ export default {
440441
background: var(--chat-bg-color-content);
441442
height: calc(100% - 120px);
442443
overflow-y: auto;
444+
margin-right: 1px;
443445
}
444446
445447
.messages-container {
@@ -458,7 +460,7 @@ export default {
458460
.room-footer {
459461
position: absolute;
460462
bottom: 0;
461-
width: 100%;
463+
width: calc(100% - 1px);
462464
background: var(--chat-color-input);
463465
border-top: 1px solid var(--chat-border-color);
464466
z-index: 10;

0 commit comments

Comments
 (0)