mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-12-13 09:11:19 -05:00
19 lines
350 B
SCSS
19 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;
|
||
|
}
|
||
|
}
|