web.scss 461 B

1234567891011121314151617181920212223242526272829
  1. .tui-search {
  2. &-main-global {
  3. width: 100%;
  4. height: fit-content;
  5. }
  6. &-main-conversation {
  7. width: 100%;
  8. height: 100%;
  9. background: #fff;
  10. box-shadow: 0 1px 10px 0 rgba(2,16,43,0.15);
  11. }
  12. .tui-search-global {
  13. &-header {
  14. display: flex;
  15. flex-direction: row;
  16. justify-content: center;
  17. align-items: center;
  18. }
  19. }
  20. .tui-search-conversation {
  21. width: 100%;
  22. height: 100%;
  23. overflow: hidden;
  24. }
  25. }