a3e818063de3c4da253e1047ee9556b6bd740a84d6a37935d5e4c4ad01c4f259aa189ce017ad795523f089d7c8b8dcfc1f00feeafc9facef2f90c944d03ed8 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. }