steps.scss 309 B

1234567891011121314151617181920
  1. @import "mixins/mixins";
  2. @include b(steps) {
  3. display: flex;
  4. @include m(simple) {
  5. padding: 13px 8%;
  6. border-radius: 4px;
  7. background: $--background-color-base;
  8. }
  9. @include m(horizontal) {
  10. white-space: nowrap;
  11. }
  12. @include m(vertical) {
  13. height: 100%;
  14. flex-flow: column;
  15. }
  16. }