rf-web/_sass/utils/position-utils.scss
2020-08-17 09:48:14 +02:00

43 lines
536 B
SCSS

.block {
display: block;
}
.inline-block {
display: inline-block;
}
.flex {
display: flex;
&.flex-col {
flex-direction: column;
}
&.flex-row {
flex-direction: row;
}
&.flex-justify-space-between {
justify-content: space-between;
}
&.flex-justify-space-between {
justify-content: space-between;
}
&.flex-centered {
justify-content: center;
align-items: center;
}
&.flex-wrap {
flex-wrap: wrap;
}
&.flex-wrap-m {
@include touch {
flex-wrap: wrap;
}
}
}