Skip to content

Commit 6362ddd

Browse files
committed
(theme) add border-radius css var
1 parent 6c7868a commit 6362ddd

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/ChatWindow/MessagesList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ export default {
509509
height: 64px;
510510
margin-right: 1px;
511511
background: var(--chat-header-bg-color);
512-
border-top-right-radius: 4px;
512+
border-top-right-radius: var(--chat-container-border-radius);
513513
}
514514
515515
.toggle-button {

src/ChatWindow/RoomsList.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,8 @@ export default {
123123
background: var(--chat-sidemenu-bg-color);
124124
height: 100%;
125125
overflow-y: auto;
126+
border-top-left-radius: var(--chat-container-border-radius);
127+
border-bottom-left-radius: var(--chat-container-border-radius);
126128
}
127129
128130
.rooms-container-full {

0 commit comments

Comments
 (0)