Files
Automata/packages/design-system/src/css/row.scss
कारतोफ्फेलस्क्रिप्ट™ 13659d036f ci: Ensure that eslint runs on all frontend code (no-changelog) (#4602)
* 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
2022-11-15 18:20:54 +01:00

38 lines
719 B
SCSS

@use './common/var';
@use 'mixins/mixins';
@use 'mixins/utils';
@include mixins.b(row) {
position: relative;
box-sizing: border-box;
@include utils.utils-clearfix;
@include mixins.m(flex) {
display: flex;
&:before,
&:after {
display: none;
}
@include mixins.when(justify-center) {
justify-content: center;
}
@include mixins.when(justify-end) {
justify-content: flex-end;
}
@include mixins.when(justify-space-between) {
justify-content: space-between;
}
@include mixins.when(justify-space-around) {
justify-content: space-around;
}
@include mixins.when(align-middle) {
align-items: center;
}
@include mixins.when(align-bottom) {
align-items: flex-end;
}
}
}