web.scss 501 B

1234567891011121314151617181920212223242526272829303132333435
  1. .tui-chat {
  2. width: 100%;
  3. height: 100%;
  4. max-width: 100%;
  5. overflow: hidden;
  6. box-sizing: border-box;
  7. display: flex;
  8. flex-direction: column;
  9. position: relative;
  10. &-default {
  11. width: 100%;
  12. height: 100%;
  13. box-sizing: border-box;
  14. display: flex;
  15. }
  16. &-header {
  17. padding: 10px;
  18. box-sizing: border-box;
  19. display: flex;
  20. }
  21. &-message-list {
  22. flex: 1;
  23. overflow: hidden;
  24. display: flex;
  25. }
  26. &-message-input {
  27. height: 160px;
  28. display: flex;
  29. }
  30. }