24 lines
369 B
CSS
24 lines
369 B
CSS
.dashboardContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
font-family: var(--font-family);
|
|
width: 100%;
|
|
height: 100vh;
|
|
flex: 1;
|
|
}
|
|
|
|
.chatLogContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
min-height: 0;
|
|
}
|
|
|
|
.chatArea {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
min-height: 0;
|
|
}
|
|
|