* ensure that eslint runs on all frontend code * remove tslint from `design-system` * enable prettier and eslint-prettier for `design-system` * Delete tslint.json * use a single editorconfig for the repo * enable prettier for all code in `design-system` * more linting fixes on design-system * ignore coverage for git and prettier * lintfix on editor-ui
15 lines
227 B
SCSS
15 lines
227 B
SCSS
@use 'mixins/mixins';
|
|
|
|
@include mixins.b(container) {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex: 1;
|
|
flex-basis: auto;
|
|
box-sizing: border-box;
|
|
min-width: 0;
|
|
|
|
@include mixins.when(vertical) {
|
|
flex-direction: column;
|
|
}
|
|
}
|