mirror of
https://github.com/owncast/owncast.git
synced 2024-12-25 10:38:28 +03:00
26f9a41508
Added moderator icon changed styling for a name change message Now usernames collapse as long as the user is the same Imported two weights of Poppins and the OpenSans variable instead of def 400 This is some progress on #1859 and #1625
34 lines
757 B
SCSS
34 lines
757 B
SCSS
.chatHeader {
|
|
text-align: center;
|
|
font-weight: bold;
|
|
padding: 5px 0;
|
|
color: var(--text-color-secondary);
|
|
border-bottom: 1px solid var(--color-owncast-gray-700);
|
|
font-variant: small-caps;
|
|
}
|
|
|
|
.toBottomWrap {
|
|
display: flex;
|
|
opacity: 0.9;
|
|
width: 100%;
|
|
justify-content: center;
|
|
position: absolute;
|
|
bottom: 5px;
|
|
}
|
|
|
|
.nameChangeView {
|
|
display: flex;
|
|
font-size: 0.9rem;
|
|
border-radius: var(--theme-rounded-corners);
|
|
padding: 5px 15px;
|
|
color: var(--color-owncast-gray-300);
|
|
background-color: var(--color-owncast-background);
|
|
& .nameChangeText {
|
|
font-weight: bold;
|
|
font-family: var(--theme-header-font-family);
|
|
& .plain {
|
|
font-weight: normal;
|
|
font-family: var(--font-owncast-family) !important;
|
|
}
|
|
}
|
|
}
|