register.scss 510 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. @import "colors";
  2. @import "breakpoints";
  3. main#register {
  4. p {
  5. color: $musare_color_primary_gray;
  6. font-size: 12px;
  7. line-height: 16px;
  8. margin-bottom: 16px;
  9. }
  10. #recaptcha {
  11. margin-bottom: 16px;
  12. $scale: 296 / 304;
  13. > div {
  14. height: 76px * $scale !important;
  15. width: unset !important;
  16. }
  17. iframe {
  18. transform: scale($scale);
  19. }
  20. > div {
  21. margin-left: auto;
  22. margin-right: auto;
  23. > div {
  24. width: 100%;
  25. height: 100%;
  26. }
  27. }
  28. iframe {
  29. transform-origin: 0 0;
  30. }
  31. }
  32. }