index.module.scss 496 B

12345678910111213141516171819202122232425262728
  1. .content {
  2. position: relative;
  3. padding: 4px 4px;
  4. .item {
  5. height: 30px;
  6. width: 180px;
  7. padding: 4px 8px;
  8. display: flex;
  9. align-items: center;
  10. gap: 8px;
  11. flex: 1 0 0;
  12. border-radius: 4px;
  13. cursor: pointer;
  14. .text {
  15. flex: 1 1 auto;
  16. color: var(--Grey-800, #344054);
  17. font-size: 14px;
  18. font-weight: 400;
  19. line-height: 22px; /* 157.143% */
  20. }
  21. &:global(.active) {
  22. background-color: var(--Grey-100, #f9fafb);
  23. }
  24. }
  25. }