h5.scss 665 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .chat {
  2. height: 100vh;
  3. overflow: hidden;
  4. }
  5. .tui-chat-h5 {
  6. &-message-list {
  7. flex: 1;
  8. overflow: hidden;
  9. display: flex;
  10. }
  11. &-message-input {
  12. height: auto;
  13. padding: 10px 10px 0;
  14. border-top: 1px solid #eee;
  15. }
  16. &-message-input-toolbar {
  17. order: 1;
  18. border: none;
  19. }
  20. }
  21. .tui-chat-uniapp {
  22. &-header {
  23. display: none;
  24. }
  25. }
  26. .group-profile {
  27. position: absolute;
  28. top: 14%;
  29. right: 0;
  30. width: 50px;
  31. height: 30px;
  32. line-height: 30px;
  33. color: #000;
  34. font-size: 10px;
  35. border-top-left-radius: 20px;
  36. border-bottom-left-radius: 20px;
  37. padding-left: 15px;
  38. z-index: 100;
  39. background-color: #ccc;
  40. opacity: 0.5;
  41. }