Skip to content

Commit

Permalink
SUL23-413 - Reduced gap spacing (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdyoung3 authored and pookmish committed Mar 6, 2024
1 parent 9d3abed commit 38ac1b6
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: NodeUnion[], 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: NodeUnion[], h3Heading?: boolean
</div>
)
}
export default CardList;
export default CardList;

0 comments on commit 38ac1b6

Please sign in to comment.