index.module.less 756 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. .NavTitle {
  2. display: flex;
  3. flex-direction: row;
  4. align-items: center;
  5. .sanIcons {
  6. width: 15px;
  7. height: 15px;
  8. margin-left: 4px;
  9. }
  10. }
  11. .isReversal {
  12. transition: all 0.1;
  13. transform: rotate(180deg);
  14. }
  15. .chioseWrap {
  16. display: flex;
  17. flex-direction: row;
  18. align-items: center;
  19. justify-content: flex-start;
  20. background-color: #f8f8f8;
  21. color: #333;
  22. font-weight: 500;
  23. font-size: 14px;
  24. .orchestraBand {
  25. display: flex;
  26. flex-direction: row;
  27. align-items: center;
  28. p {
  29. max-width: 80px;
  30. overflow: hidden;
  31. text-overflow: ellipsis;
  32. white-space: nowrap;
  33. }
  34. }
  35. }
  36. .searchBand {
  37. display: flex;
  38. .bandName {
  39. display: inline-block;
  40. max-width: 120px;
  41. vertical-align: text-top;
  42. }
  43. }