You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_input-control.scss 765B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .input-control {
  2. padding: 16px 0;
  3. &__text {
  4. margin: 8px 0;
  5. font-size: 1em
  6. }
  7. &__label {
  8. font-size: 1em;
  9. font-weight: $labelFontWeight;
  10. }
  11. &__input {
  12. margin: 8px 0;
  13. &::selection {
  14. background-color: $defaultDarkSelectionColor;
  15. }
  16. }
  17. &__em {
  18. color: $inputControlEmColor;
  19. }
  20. &__hint {
  21. margin-top: 0;
  22. font-size: $hintFontSize;
  23. span {
  24. vertical-align: middle;
  25. }
  26. }
  27. &__container {
  28. position: relative;
  29. width: 100%;
  30. @include flex();
  31. .button-control {
  32. margin: 9px 0 9px 10px;
  33. }
  34. }
  35. &__right {
  36. position: absolute;
  37. right: 0;
  38. }
  39. }