Skip to content

Commit

Permalink
Merge branch '1.12' into 1.13
Browse files Browse the repository at this point in the history
* 1.12:
  Fix products grid
  • Loading branch information
GSadee committed Apr 29, 2024
2 parents cd2f28f + 053c49e commit 00aeb63
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ header .ui.three.column.stackable.grid > .column:nth-child(3) .button span {

#products.three.cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
grid-template-columns: repeat(3, minmax(240px, 1fr));
gap: 30px;
margin: 0 !important;
}
Expand Down Expand Up @@ -326,7 +326,7 @@ header .ui.three.column.stackable.grid > .column:nth-child(3) .button span {

.ui.four.doubling.cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
grid-template-columns: repeat(4, minmax(240px, 1fr));
gap: 30px;
margin: 0 !important;
}
Expand Down

0 comments on commit 00aeb63

Please sign in to comment.