rf-web/_sass/utils/position-utils.scss
2020-08-16 11:54:33 +02:00

33 lines
421 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;
}
}