web.scss 695 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. &-leave-group {
  27. font-size: 14px;
  28. height: 160px;
  29. border-top: 1px solid #efefef;
  30. justify-content: center;
  31. align-items: center;
  32. &-mobile {
  33. height: 50px;
  34. }
  35. }
  36. &-message-input {
  37. height: 160px;
  38. display: flex;
  39. }
  40. }