Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

_invite_more.scss 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. .invite-more {
  2. &-dialog {
  3. color: #fff;
  4. font-size: 15px;
  5. line-height: 24px;
  6. &.separator {
  7. margin: 24px 0 24px -20px;
  8. padding: 0 20px;
  9. width: 100%;
  10. height: 1px;
  11. background: #5E6D7A;
  12. }
  13. &.stream {
  14. display: flex;
  15. justify-content: space-between;
  16. align-items: center;
  17. padding: 8px 8px 8px 16px;
  18. margin-top: 8px;
  19. width: calc(100% - 26px);
  20. height: 22px;
  21. background: #2A3A4B;
  22. border: 1px solid #5E6D7A;
  23. border-radius: 3px;
  24. cursor: pointer;
  25. &:hover {
  26. font-weight: 600;
  27. }
  28. &-text {
  29. overflow: hidden;
  30. text-overflow: ellipsis;
  31. white-space: nowrap;
  32. max-width: 292px;
  33. &.selected {
  34. font-weight: 600;
  35. }
  36. }
  37. &.clicked {
  38. background: #31B76A;
  39. border: 1px solid #31B76A;
  40. }
  41. & > div > svg > path {
  42. fill: #fff;
  43. }
  44. }
  45. }
  46. }