39 lines
711 B
CSS
39 lines
711 B
CSS
@import './chat-page-web-tablet.css';
|
|
@import './chat-page-web-small-pc.css';
|
|
@import './chat-page-web-standard-pc.css';
|
|
@import './chat-page-web-large-2k.css';
|
|
@import './chat-page-web-ultra-4k.css';
|
|
|
|
.chat-empty-state {
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.chat-content-layout {
|
|
display: flex;
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.chat-conversation-panel {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-width: 0;
|
|
height: 100%;
|
|
background: var(--color-bg);
|
|
}
|
|
|
|
.chat-shell.desktop-standardPc {
|
|
grid-template-columns: 280px minmax(0, 1fr);
|
|
}
|
|
|
|
.chat-shell.desktop-standardPc .chat-main {
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
}
|
|
|