Skip to content

Commit

Permalink
Extend lookup page card to full available space ↕️
Browse files Browse the repository at this point in the history
  • Loading branch information
wotschofsky committed Dec 15, 2024
1 parent 4647db8 commit a45de94
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/lookup/[domain]/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const LookupLayout: FC<LookupLayoutProps> = async (props) => {
return (
<>
<Header showSearch={true} />
<main className="w-full flex-1">
<main className="flex w-full flex-1 flex-col">
<div className="container space-y-6 pb-8 pt-12">
<div className="flex w-full items-center gap-4">
{/* Bottom padding added to avoid clipping */}
Expand Down Expand Up @@ -90,8 +90,8 @@ const LookupLayout: FC<LookupLayoutProps> = async (props) => {
<WhoisQuickInfo domain={domain} />
</div>

<div className="p-3">
<Card className="pb-12">
<div className="flex flex-1 flex-col p-3">
<Card className="flex-1 pb-12">
<div className="container">
<ResultsTabs domain={domain} />
{children}
Expand Down

0 comments on commit a45de94

Please sign in to comment.