mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-12-13 17:21:14 -05:00
f05cb39501
Just a container with some default flexbox formatting.
18 lines
350 B
SCSS
18 lines
350 B
SCSS
@import "../../../frameless";
|
|
|
|
.flex-row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
|
|
&.column {
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
@media only screen and (max-width: $tablet - 1) {
|
|
flex-direction: column;
|
|
}
|
|
}
|