Skip to content

Commit

Permalink
Reduced gap spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
mdyoung3 committed Feb 22, 2024
1 parent 2a8c43a commit 164fbd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/views/card-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const CardList = ({items, h3Heading}:{items: StanfordNode[], h3Heading?: boolean

return (
<div className="@container">
<ul className={`list-unstyled grid gap-[90px] ${gridClass}`}>
<ul className={`list-unstyled grid gap-[45px] ${gridClass}`}>
{items.filter(item => !!item?.id).map(item =>
<li key={item.id} className="w-full max-w-[500px] mx-auto">
<NodeCard node={item} key={item.id} h3Heading={h3Heading}/>
Expand All @@ -22,4 +22,4 @@ const CardList = ({items, h3Heading}:{items: StanfordNode[], h3Heading?: boolean
</div>
)
}
export default CardList;
export default CardList;

0 comments on commit 164fbd3

Please sign in to comment.