Skip to content

Commit

Permalink
fix: constrain the width of the categories
Browse files Browse the repository at this point in the history
  • Loading branch information
lishaduck committed Mar 1, 2024
1 parent 3a679a4 commit 3613684
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export function Footer(props: FooterProps): JSX.Element {
<div class="grid grid-flow-col grid-rows-1 gap-x-2 gap-y-16 sm:gap-x-8 md:gap-16">
{menus.map(
(item: Menu): JSX.Element => (
<section class="col-span-1">
<section class="col-span-1 max-w-52 text-pretty">
<RenderCategory {...item} key={item.title} />
</section>
),
Expand Down

0 comments on commit 3613684

Please sign in to comment.