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

48 lines
582 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;
}
&.justify-end {
justify-content: flex-end;
}
&.wrap {
flex-wrap: wrap;
}
&.column {
flex-direction: column;
}
&.row-reverse {
flex-direction: row-reverse;
}
}
.flex-grow {
flex-grow: 1;
2017-07-03 14:01:35 +02:00
}