Skip to content

Commit

Permalink
Fix container width inside results card ✅
Browse files Browse the repository at this point in the history
  • Loading branch information
wotschofsky committed Dec 23, 2024
1 parent 3105d77 commit 209c8a4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/lookup/[domain]/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ const LookupLayout: FC<LookupLayoutProps> = async (props) => {

<div className="flex flex-1 flex-col p-3">
<Card className="flex-1 py-8">
<div className="container px-5">{children}</div>
<div className="container px-5 min-[1400px]:max-w-[calc(1400px-2*.75rem)]">
{children}
</div>
</Card>
</div>
</main>
Expand Down

0 comments on commit 209c8a4

Please sign in to comment.