rum-goggles/frontend/src/components/StreamChat.css

41 lines
732 B
CSS
Raw Normal View History

.stream-chat {
width: 100%;
height: 100%;
}
2023-12-24 21:18:42 +00:00
.stream-chat-add-button {
align-items: center;
background-color: rgba(6,23,38,1);
border: none;
display: flex;
justify-content: center;
padding: 0px;
}
.stream-chat-add-button:hover {
cursor: pointer;
}
.stream-chat-add-icon {
height: 24px;
width: 24px;
}
.stream-chat-header {
2023-12-24 21:18:42 +00:00
align-items: center;
background-color: rgba(6,23,38,1);
border-bottom: 1px solid #495a6a;
2023-12-24 21:18:42 +00:00
display: flex;
flex-direction: row;
justify-content: space-between;
height: 19px;
padding: 10px 20px;
2023-12-24 21:18:42 +00:00
text-align: left;
}
.stream-chat-title {
color: white;
font-family: sans-serif;
font-size: 12px;
font-weight: bold;
}