版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

container.scss 228 B

1234567891011121314
  1. @use 'mixins/mixins' as *;
  2. @include b(container) {
  3. display: flex;
  4. flex-direction: row;
  5. flex: 1;
  6. flex-basis: auto;
  7. box-sizing: border-box;
  8. min-width: 0;
  9. @include when(vertical) {
  10. flex-direction: column;
  11. }
  12. }