fix(chat): increase font weight of chat name change messages

This commit is contained in:
Gabe Kangas 2023-05-06 11:01:09 -07:00
parent 88096766bb
commit afa6c8fd23
No known key found for this signature in database
GPG key ID: 4345B2060657F330

View file

@ -1,18 +1,18 @@
.nameChangeView {
display: flex;
font-size: var(--chat-message-text-size);
font-weight: 300;
font-weight: 400;
border-radius: var(--theme-rounded-corners);
padding: 5px 15px;
color: var(--theme-color-components-chat-text);
& .nameChangeText {
font-weight: 300;
font-weight: 400;
& .plain {
font-weight: 300;
font-weight: 400;
}
}
}
.icon {
padding-right: var(--chat-notification-icon-padding);
padding-right: var(--chat-notification-icon-padding);
}