fix(home): isOdd/isEven ...@@ -234,21 +234,24 @@ const HomeView: ReactView<HomeViewProps> = (props) => {
min-height: 80vh;
flex-direction: row;
align-items: center;
- gap: 48;
+ gap: 48px;
flex-wrap: wrap;
}
.is-even {
flex-direction: row-reverse;
}
+ .is-odd {
+ flex-direction: row;
+ }
@media (max-width: ${breakpoints.sm}) {
.feature-section {
flex-direction: column;
}
.is-even {
- flex-direction: column-reverse;
+ flex-direction: column;
}
.is-odd {
- flex-direction: column;
+ flex-direction: column-reverse;
}
}
`}</style>