steps.scss 343 B

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