Skip to content

Commit

Permalink
Merge branch '1.14' into 2.0
Browse files Browse the repository at this point in the history
* 1.14:
  Fix products grid
  • Loading branch information
GSadee committed Apr 29, 2024
2 parents 8db2501 + 33869ba commit 236d845
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 236d845

Please sign in to comment.