mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* feat: change to import scss Change the import css to import scss to facilitate style modification * fix: fixed: storybook support scss file fixed: storybook support scss file * chore: remove redundant code in webpack.config.js Remove redundant code in webpack.config.js
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;
|
|
}
|
|
}
|