h5.scss 682 B

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