AltitudeWeb/frontend/src/app/pages/altitude/chat/chat.component.scss

33 lines
487 B
SCSS
Raw Normal View History

.page-layout {
display: flex;
flex-direction: row;
width: 100%;
height: 100%;
.server-list {
flex: 0 0 auto;
width: max-content;
min-width: 100px;
}
.chat {
display: flex;
flex-direction: column;
flex: 1 1 auto;
min-width: 0;
min-height: 0;
.chat-info {
flex: 0 0 auto;
padding: 5px 5px 2px 5px;
}
.chat-box {
flex: 1 1 auto;
min-width: 0;
padding: 0 5px 0 5px;
min-height: 0;
}
}
}