steps.scss 366 B

12345678910111213141516171819202122
  1. @use 'mixins/mixins' as *;
  2. @use 'common/var' as *;
  3. @include b(steps) {
  4. display: flex;
  5. line-height: normal;
  6. @include m(simple) {
  7. padding: 13px 8%;
  8. border-radius: 4px;
  9. background: getCssVar('fill-color', 'light');
  10. }
  11. @include m(horizontal) {
  12. white-space: nowrap;
  13. }
  14. @include m(vertical) {
  15. height: 100%;
  16. flex-flow: column;
  17. }
  18. }