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

_radio.scss 405B

1234567891011121314151617181920212223242526272829
  1. .c-radio {
  2. display: flex;
  3. cursor: pointer;
  4. &.c-radio--selected {
  5. border-color: $dark-blue;
  6. }
  7. }
  8. .c-radio__field {
  9. display: none;
  10. }
  11. .c-radio__indicator {
  12. margin-top: pxToRem(4px);
  13. margin-right: pxToRem(16px);
  14. }
  15. .c-radio__icon {
  16. width: pxToRem(16px);
  17. height: pxToRem(16px);
  18. }
  19. .c-radio__text {
  20. font-size: pxToRem(14px);
  21. line-height: 1.15;
  22. color: $blue;
  23. user-select: none;
  24. }