28 lines
529 B
CSS
28 lines
529 B
CSS
.stream-chat {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.stream-chat-header {
|
|
align-items: center;
|
|
background-color: rgba(6,23,38,1);
|
|
border-bottom: 1px solid #495a6a;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
height: 19px;
|
|
padding: 10px 20px;
|
|
text-align: left;
|
|
}
|
|
|
|
.stream-chat-list {
|
|
overflow-y: auto;
|
|
height: calc(100vh - 84px - 40px - 179px);
|
|
}
|
|
|
|
.stream-chat-title {
|
|
color: white;
|
|
font-family: sans-serif;
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
} |