Skip to content

Commit

Permalink
bug #16190 Fix products grid (kulczy)
Browse files Browse the repository at this point in the history
This PR was merged into the 1.12 branch.

Discussion
----------

| Q               | A
|-----------------|-----
| Branch?         | 1.12
| Bug fix?        | no
| New feature?    | no
| BC breaks?      | no
| Deprecations?   | no
| Related tickets | fixes #16041 
| License         | MIT

THEN
<img width="1426" alt="Screenshot 2024-04-29 at 11 40 14" src="https://github.com/Sylius/Sylius/assets/15385420/21b47fa6-7f5f-43bb-bff8-ceb656d57a16">

NOW
<img width="1426" alt="Screenshot 2024-04-29 at 11 40 35" src="https://github.com/Sylius/Sylius/assets/15385420/37d76943-dd8a-4b4b-a766-6c1a1fe79665">


Commits
-------

4cf0178 Fix products grid
  • Loading branch information
GSadee committed Apr 29, 2024
2 parents 3eb3239 + 4cf0178 commit 053c49e
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 053c49e

Please sign in to comment.