46 lines
930 B
SCSS
46 lines
930 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: 75px;
|
|
}
|
|
|
|
.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-text-display-font-family);
|
|
& .plain {
|
|
font-weight: normal;
|
|
font-family: var(--theme-text-body-font-family) !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.chatContainer {
|
|
display: grid;
|
|
grid-template-rows: 1fr 65px;
|
|
height: 100%;
|
|
}
|
|
.virtuoso {
|
|
width: auto;
|
|
overflow-y: scroll;
|
|
overflow-x: hidden;
|
|
}
|