gbclient/app/chat/styles/layout.css

25 lines
275 B
CSS
Raw Normal View History

.chat-layout {
display: flex;
height: 100vh;
background-color: #111;
}
.sidebar {
width: 18rem;
border-right: 1px solid #333;
}
.main-content {
flex: 1;
display: flex;
}
.projector {
width: 40%;
border-right: 1px solid #333;
}
.chat-area {
flex: 1;
}