mirror of
https://github.com/HackPlan/AsyncDisplayKit.git
synced 2026-04-23 03:20:39 +08:00
14 lines
186 B
SCSS
14 lines
186 B
SCSS
.index-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
|
|
@media (max-width: $mobile-max-width) {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.index-column {
|
|
flex: 1 1 33%;
|
|
}
|
|
}
|