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.
44 lines
793 B
44 lines
793 B
@import "common/var";
|
|
@import "mixins/mixins";
|
|
@import "mixins/utils";
|
|
|
|
@include b(row) {
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
@include utils-clearfix;
|
|
|
|
@include m(flex) {
|
|
display: flex;
|
|
&:before,
|
|
&:after {
|
|
display: none;
|
|
}
|
|
|
|
@include when(justify-center) {
|
|
justify-content: center;
|
|
}
|
|
@include when(justify-end) {
|
|
justify-content: flex-end;
|
|
}
|
|
@include when(justify-space-between) {
|
|
justify-content: space-between;
|
|
}
|
|
@include when(justify-space-around) {
|
|
justify-content: space-around;
|
|
}
|
|
|
|
@include when(align-top) {
|
|
align-items: flex-start;
|
|
}
|
|
|
|
@include when(align-middle) {
|
|
align-items: center;
|
|
}
|
|
@include when(align-bottom) {
|
|
align-items: flex-end;
|
|
}
|
|
}
|
|
|
|
}
|
|
|