Skip to content

Commit 6609a59

Browse files
authored
Merge pull request #4082 from IntersectMBO/GA-spacing-fix
GA spacing fix
2 parents 189abd4 + ecb4901 commit 6609a59

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

govtool/frontend/src/components/organisms/DashboardGovernanceActionsVotedOn.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export const DashboardGovernanceActionsVotedOn = ({
7777
<Box
7878
columnGap="20px"
7979
display="grid"
80-
gridTemplateColumns={`repeat(auto-fit, minmax(${
80+
gridTemplateColumns={`repeat(auto-fill, minmax(${
8181
screenWidth < 420 ? "290px" : isMobile ? "324px" : "350px"
8282
}, 1fr))`}
8383
>

govtool/frontend/src/components/organisms/GovernanceActionsToVote.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export const GovernanceActionsToVote = ({
121121
<Box
122122
columnGap="20px"
123123
display="grid"
124-
gridTemplateColumns={`repeat(auto-fit, minmax(${
124+
gridTemplateColumns={`repeat(auto-fill, minmax(${
125125
screenWidth < 420 ? "290px" : isMobile ? "324px" : "350px"
126126
}, 1fr))`}
127127
>

0 commit comments

Comments
 (0)