demarches-normaliennes/app/assets/stylesheets/new_design/flex.scss
2019-02-04 11:58:26 +01:00

39 lines
472 B
SCSS

.flex {
display: flex;
&.align-center {
align-items: center;
}
&.align-start {
align-items: flex-start;
}
&.align-baseline {
align-items: baseline;
}
&.justify-between {
justify-content: space-between;
}
&.justify-center {
justify-content: center;
}
&.justify-start {
justify-content: flex-start;
}
&.wrap {
flex-wrap: wrap;
}
&.column {
flex-direction: column;
}
}
.flex-grow {
flex-grow: 1;
}