mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
15 lines
226 B
SCSS
15 lines
226 B
SCSS
@import 'mixins/mixins';
|
|
|
|
@include b(container) {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex: 1;
|
|
flex-basis: auto;
|
|
box-sizing: border-box;
|
|
min-width: 0;
|
|
|
|
@include when(vertical) {
|
|
flex-direction: column;
|
|
}
|
|
}
|