Skip to content

Commit 9da6266

Browse files
style(pages/staking): update grid column definition for CardGrid component
1 parent 3fe5162 commit 9da6266

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/pages/staking/index.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,7 @@ const StyledButtonLink = ({
103103
)
104104

105105
const CardGrid = (props: ChildOnlyProp) => (
106-
<div
107-
className="grid grid-cols-[1fr] gap-8 lg:grid-cols-[repeat(3,1fr)]"
108-
{...props}
109-
/>
106+
<div className="grid grid-cols-1 gap-8 lg:grid-cols-3" {...props} />
110107
)
111108

112109
const StyledCard = (props: {

0 commit comments

Comments
 (0)