mirror of
https://github.com/rjNemo/React-SaaS-sample
synced 2026-06-09 06:16:40 +00:00
27 lines
448 B
SCSS
27 lines
448 B
SCSS
.Features {
|
|
max-width: 900px;
|
|
margin: 80px auto 0 auto;
|
|
|
|
&__columns {
|
|
// Reverse every other row
|
|
&:nth-of-type(even) {
|
|
flex-direction: row-reverse;
|
|
}
|
|
|
|
&:not(:last-of-type) {
|
|
padding-bottom: 1.5rem;
|
|
@media screen and (min-width: 769px) {
|
|
padding-bottom: 2.5rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
&__title {
|
|
margin-bottom: 1.2rem !important;
|
|
}
|
|
|
|
&__image {
|
|
max-width: 300px;
|
|
margin: 30px auto;
|
|
}
|
|
}
|