You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
318 B
CSS
28 lines
318 B
CSS
1 year ago
|
.chat-layout {
|
||
|
height: 100vh;
|
||
|
}
|
||
|
|
||
|
.chat-sider {
|
||
|
overflow: auto;
|
||
|
}
|
||
|
|
||
|
.chat-content {
|
||
|
padding: 24px;
|
||
|
overflow: auto;
|
||
|
}
|
||
|
|
||
|
.chat-input {
|
||
|
position: fixed;
|
||
|
bottom: 0;
|
||
|
width: calc(100% - 300px);
|
||
|
display: flex;
|
||
|
padding: 24px;
|
||
|
}
|
||
|
|
||
|
.chat-input .ant-input {
|
||
|
margin-right: 24px;
|
||
|
}
|
||
|
|
||
|
.chat-button {
|
||
|
height: 40px;
|
||
|
}
|