index.module.scss 785 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. .userList {
  2. display: flex;
  3. width: 200px;
  4. height: 100%;
  5. flex-direction: column;
  6. align-items: center;
  7. flex-shrink: 0;
  8. border-right: 1px solid #eaecf0;
  9. background: #fff;
  10. box-sizing: border-box;
  11. .title {
  12. display: flex;
  13. padding: 12px;
  14. justify-content: space-between;
  15. align-items: center;
  16. align-self: stretch;
  17. border-bottom: 1px solid #eaecf0;
  18. background: #fff;
  19. .text {
  20. color: #344054;
  21. font-size: 14px;
  22. font-weight: 500;
  23. line-height: 150%;
  24. letter-spacing: 0.449px;
  25. }
  26. }
  27. .content {
  28. position: relative;
  29. width: 100%;
  30. height: 100%;
  31. overflow: hidden;
  32. .list {
  33. position: absolute;
  34. left: 0;
  35. top: 0;
  36. right: 0;
  37. bottom: 0;
  38. overflow-y: auto;
  39. }
  40. }
  41. }