2025-03-30 19:04:24 -03:00
|
|
|
.chat-layout {
|
|
|
|
display: flex;
|
|
|
|
height: 100vh;
|
|
|
|
background-color: #111;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
width: 18rem;
|
|
|
|
border-right: 1px solid #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-content {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
2025-04-26 21:44:35 -03:00
|
|
|
flex-direction: column;
|
2025-03-30 19:04:24 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
.projector {
|
2025-04-26 21:44:35 -03:00
|
|
|
height: 30%;
|
|
|
|
border-bottom: 1px solid #333;
|
2025-03-30 19:04:24 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
.chat-area {
|
|
|
|
flex: 1;
|
|
|
|
}
|