setPassword.scss 595 B

1234567891011121314151617181920212223242526272829303132333435
  1. @import "colors";
  2. @import "breakpoints";
  3. main#setPassword, main#forgotPassword {
  4. .steps {
  5. display: flex;
  6. width: 100%;
  7. justify-content: center;
  8. align-items: center;
  9. margin-bottom: 16px;
  10. .step-circle {
  11. background-color: $musare_color_light_gray;
  12. border-radius: 100%;
  13. color: $musare_color_white;
  14. width: 36px;
  15. height: 36px;
  16. line-height: 36px;
  17. text-align: center;
  18. }
  19. .step-circle-active {
  20. background-color: $musare_color_primary_blue;
  21. }
  22. .step-line {
  23. background-color: $musare_color_light_gray;
  24. width: calc(50% - 58px);
  25. height: 1px;
  26. }
  27. }
  28. }