h5.scss 611 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .tui-search-h5 {
  2. &-full-screen {
  3. position: absolute;
  4. width: 100%;
  5. height: 100%;
  6. overflow: hidden;
  7. display: flex;
  8. flex-direction: column;
  9. z-index: 1000;
  10. background: #fff;
  11. }
  12. &-global,
  13. &-conversation {
  14. width: 100%;
  15. height: 100%;
  16. display: flex;
  17. flex: 1;
  18. flex-direction: column;
  19. }
  20. &-conversation {
  21. overflow: hidden;
  22. }
  23. &.tui-search-main-conversation {
  24. box-shadow: none;
  25. }
  26. .search-input,
  27. .search-container,
  28. .search-result {
  29. min-width: 0;
  30. box-sizing: border-box;
  31. display: flex;
  32. flex: 1;
  33. overflow: hidden;
  34. }
  35. }