demarches-normaliennes/app/assets/stylesheets/new_design/flex.scss

28 lines
357 B
SCSS
Raw Normal View History

2017-07-03 14:01:35 +02:00
.flex {
display: flex;
&.align-center {
align-items: center;
}
&.align-start {
align-items: flex-start;
}
&.align-baseline {
align-items: baseline;
}
2017-07-03 14:01:35 +02:00
&.justify-between {
justify-content: space-between;
}
2017-12-21 11:41:44 +01:00
&.justify-center {
justify-content: center;
}
&.justify-start {
justify-content: flex-start;
}
2017-07-03 14:01:35 +02:00
}