43 lines
528 B
SCSS
43 lines
528 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;
|
|
}
|
|
|
|
&.row-reverse {
|
|
flex-direction: row-reverse;
|
|
}
|
|
}
|
|
|
|
.flex-grow {
|
|
flex-grow: 1;
|
|
}
|