Break out name change message to own component + fix text color. Closes #2718

This commit is contained in:
Gabe Kangas
2023-02-19 16:20:07 -08:00
parent 47b2d917d5
commit 05a06796e2
5 changed files with 75 additions and 44 deletions

View File

@@ -0,0 +1,15 @@
.nameChangeView {
display: flex;
font-size: 0.9rem;
border-radius: var(--theme-rounded-corners);
padding: 5px 15px;
color: var(--theme-color-components-chat-text);
& .nameChangeText {
font-weight: bold;
font-family: var(--theme-text-display-font-family);
& .plain {
font-weight: normal;
font-family: var(--theme-text-body-font-family) !important;
}
}
}