You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
483 B
34 lines
483 B
/* flex */
|
|
.flex {
|
|
position: relative;
|
|
display: flex;
|
|
}
|
|
.flex-center {
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.flex-around {
|
|
justify-content: space-around;
|
|
}
|
|
.flex-between {
|
|
justify-content: space-between;
|
|
}
|
|
.flex-row-center {
|
|
|
|
align-items: center;
|
|
}
|
|
.flex-row-end {
|
|
align-items: flex-end;
|
|
}
|
|
.flex-col-center {
|
|
justify-content: center;
|
|
}
|
|
.flex-col-end {
|
|
align-items: flex-end;
|
|
}
|
|
.flex-column {
|
|
flex-direction: column;
|
|
}
|
|
.flex-wrap {
|
|
flex-wrap: wrap;
|
|
} |