Skip to content

Commit

Permalink
Fix feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
girishpanchal30 committed Oct 1, 2024
1 parent d36920b commit 0f87b9c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions assets/js/src/about/scss/_product-cards.scss
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
.product-cards {
display: grid;
gap: 30px;
grid-template-columns: repeat(3,minmax(0,1fr));
@media (--tablet) {
grid-template-columns: 1fr 1fr;
}

@media (--laptop) {
grid-template-columns: 1fr 1fr 1fr;
grid-template-columns: repeat(3,minmax(0,1fr));
}
}

Expand Down

0 comments on commit 0f87b9c

Please sign in to comment.