44 lines
800 B
SCSS
44 lines
800 B
SCSS
.flex-container--column, .flex-container--row {
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
}
|
|
|
|
.flex-container--column {
|
|
-webkit-flex-direction: column;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.flex-container--row {
|
|
-webkit-flex-direction: row;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.flex-container--wrap {
|
|
-webkit-flex-wrap: wrap;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.flex-container--left-bottom {
|
|
justify-content: flex-start;
|
|
align-items: baseline;
|
|
}
|
|
|
|
.flex-container--left-center {
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
}
|
|
|
|
.flex-container--center-center {
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.flex-container--space-between-bottom {
|
|
justify-content: space-between;
|
|
align-items: baseline;
|
|
}
|
|
|
|
.flex-container--space-between-center {
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|