_process-step.scss 670 B

1234567891011121314151617181920212223242526
  1. @include respond-to('tablet') {
  2. .process-step-style-02, .process-step-style-03, .process-step-style-04 {
  3. &:nth-child(2) {
  4. .progress-step-separator {
  5. display: none;
  6. }
  7. }
  8. }
  9. }
  10. @include respond-to('phone-landscape') {
  11. .process-step-style-02, .process-step-style-03, .process-step-style-04 {
  12. .progress-step-separator {
  13. display: none;
  14. }
  15. }
  16. .process-step-style-01 {
  17. .progress-step-separator {
  18. position: absolute;
  19. top: 50%;
  20. left: 0;
  21. transform: none;
  22. right: 0;
  23. margin: 0 auto;
  24. }
  25. }
  26. }