您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

_labels.scss 545B

12345678910111213141516171819202122232425262728293031323334353637
  1. .label {
  2. align-items: center;
  3. background: #36383C;
  4. border-radius: 3px;
  5. color: #fff;
  6. display: flex;
  7. font-size: 12px;
  8. font-weight: 600;
  9. height: 28px;
  10. margin: 0 0 4px 4px;
  11. padding: 0 8px;
  12. &--green {
  13. background: #31B76A;
  14. }
  15. &--red {
  16. background: #E34F56
  17. }
  18. &--white {
  19. background: #fff;
  20. color: #5e6d7a;
  21. svg {
  22. fill: #5e6d7a;
  23. }
  24. }
  25. }
  26. .label-text-with-icon {
  27. margin-left: 8px;
  28. }
  29. .participants-count {
  30. cursor: pointer;
  31. }