Here is some custom CSS to get you started:
.glsr-reviews {
display: flex;
flex-wrap: wrap;
margin: 0 1.5em;
}
.glsr-review {
flex-basis: 100%;
border: 1px solid #13596B;
padding: 0.75em;
margin: 0 1.5em 3em;
}
@media (min-width: 768px) {
.columns-3 .glsr-review {
flex-basis: calc(50% - 3em);
}
}
@media (min-width: 1024px) {
.columns-3 .glsr-review {
flex-basis: calc(33.33% - 3em);
}
}
Tip: If flexbox is used (as in the example above), make sure to use https://autoprefixer.github.io/ to add the vendor prefixes for older browsers.
-
This reply was modified 6 years, 2 months ago by Gemini Labs.
-
This reply was modified 6 years, 2 months ago by Gemini Labs.