Browse Source

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

pull/2993/head
Gabe Kangas 2 years ago
parent
commit
afa6c8fd23
No known key found for this signature in database
GPG Key ID: 4345B2060657F330
  1. 8
      web/components/chat/ChatNameChangeMessage/ChatNameChangeMessage.module.scss

8
web/components/chat/ChatNameChangeMessage/ChatNameChangeMessage.module.scss

@ -1,18 +1,18 @@ @@ -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);
}

Loading…
Cancel
Save