Skip to content

Commit

Permalink
Replace in config #2720
Browse files Browse the repository at this point in the history
  • Loading branch information
padms committed Dec 19, 2024
1 parent afb8bee commit b815794
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web/sections/AnchorLinkList/AnchorLinkList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const AnchorLinkList = forwardRef<HTMLElement, AnchorLinkListProps>(function Anc
return `${commonGridStyling} lg:grid-cols-6`
default:
case 'flex':
return 'grid grid-cols-[repeat(auto-fill,minmax(150px,1fr))] justify-start'
return 'grid auto-fill-fr justify-start'
}
}
return (
Expand Down
2 changes: 1 addition & 1 deletion web/tailwind.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ module.exports = {
}),
transitionProperty: ['motion-safe'],
gridTemplateColumns: {
'auto-fill-fr': `repeat(auto-fill, minmax(80px,1fr))`,
'auto-fill-fr': `repeat(auto-fill,minmax(150px,1fr))`,
card: `repeat(auto-fill, minmax(min(100%, theme(spacing.card-minWidth)), theme(spacing.card-maxWidth)))`,
},
},
Expand Down

0 comments on commit b815794

Please sign in to comment.