1234567891011121314151617181920212223242526272829303132333435 |
- .tui-chat {
- width: 100%;
- height: 100%;
- max-width: 100%;
- overflow: hidden;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- position: relative;
- &-default {
- width: 100%;
- height: 100%;
- box-sizing: border-box;
- display: flex;
- }
- &-header {
- padding: 10px;
- box-sizing: border-box;
- display: flex;
- }
- &-message-list {
- flex: 1;
- overflow: hidden;
- display: flex;
- }
- &-message-input {
- height: 160px;
- display: flex;
- }
- }
|