Skip to content

Commit

Permalink
Fix (New-Releases) : Cards Being Displayed Incorrectly
Browse files Browse the repository at this point in the history
Due to the CSS Change In 1.1.83+, The Song Cards Where Being Displayed Incorrectly.
  • Loading branch information
Exhigh committed Apr 23, 2022
1 parent 524e985 commit f0533fb
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions CustomApps/new-releases/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,12 @@ class Grid extends react.Component {
react.createElement(
"div",
{
className: "main-gridContainer-gridContainer",
className: "main-gridContainer-gridContainer main-gridContainer-fixedWidth",
style: {
"--minimumColumnWidth": "180px",
"--column-width": "minmax(var(--minimumColumnWidth),1fr)",
"--column-count": "auto-fill",
"--grid-gap": "24px",
},
},
separatedByDate[date].map((card) => react.createElement(Card, card.props))
Expand Down Expand Up @@ -154,9 +157,12 @@ class Grid extends react.Component {
react.createElement(
"div",
{
className: "main-gridContainer-gridContainer",
className: "main-gridContainer-gridContainer main-gridContainer-fixedWidth",
style: {
"--minimumColumnWidth": "180px",
"--column-width": "minmax(var(--minimumColumnWidth),1fr)",
"--column-count": "auto-fill",
"--grid-gap": "24px",
},
},
separatedByDate[date]
Expand Down

0 comments on commit f0533fb

Please sign in to comment.