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

_prejoin.scss 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .prejoin {
  2. &-input-area {
  3. width: 100%;
  4. }
  5. &-error {
  6. background-color: #E04757;
  7. border-radius: 6px;
  8. box-sizing: border-box;
  9. color: white;
  10. font-size: 12px;
  11. line-height: 16px;
  12. margin-bottom: 16px;
  13. margin-top: -8px;
  14. padding: 4px;
  15. text-align: center;
  16. width: 100%;
  17. }
  18. }
  19. .prejoin-preview {
  20. &-dropdown-btns {
  21. padding: 8px 0;
  22. width: calc(100% - 48px);
  23. }
  24. &-dropdown-btn {
  25. align-items: center;
  26. color: #1C2025;
  27. cursor: pointer;
  28. display: flex;
  29. height: 40px;
  30. font-size: 15px;
  31. line-height: 24px;
  32. padding: 0 16px;
  33. &:hover {
  34. background-color: #DAEBFA;
  35. }
  36. }
  37. &-dropdown-icon {
  38. display: inline-block;
  39. margin-right: 16px;
  40. & > svg {
  41. fill: #1C2025;
  42. }
  43. }
  44. &-dropdown-container {
  45. position: relative;
  46. width: 100%;
  47. /**
  48. * Override default InlineDialog behaviour, since it does not play nicely with relative widths
  49. */
  50. & > div:nth-child(2) {
  51. background: #fff;
  52. padding: 0;
  53. position: absolute !important;
  54. top: 48px !important;
  55. transform: none !important;
  56. width: 100%;
  57. }
  58. }
  59. }