2020-07-29 13:05:02 +00:00
|
|
|
.block {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2020-08-16 09:54:33 +00:00
|
|
|
.inline-block {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2020-07-29 13:05:02 +00:00
|
|
|
.flex {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
&.flex-col {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.flex-row {
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.flex-justify-space-between {
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.flex-justify-space-between {
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.flex-centered {
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
}
|