Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed hero section not properly covering screen height #6321

Merged
merged 4 commits into from
Dec 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/components/pages/pack-home/PackHero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import PackLogo from "../../logos/PackLogo";
export function PackHero() {
return (
<FadeIn
className="font-sans w-auto pb-16 pt-[48px] md:pb-24 lg:pb-32 md:pt-16 lg:pt-20 flex justify-between gap-8 items-center flex-col relative z-0"
danger-ahead marked this conversation as resolved.
Show resolved Hide resolved
className="font-sans w-auto min-h-[calc(100svh-var(--nextra-navbar-height))] pb-16 pt-[48px] md:pb-24 lg:pb-32 md:pt-16 lg:pt-20 flex justify-between gap-8 items-center flex-col relative z-0"
noVertical
>
<FadeIn className="z-50 flex items-center justify-center w-full">
Expand Down
2 changes: 1 addition & 1 deletion docs/components/pages/repo-home/RepoHero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import RepoLogo from "../../logos/RepoLogo";
export function RepoHero() {
return (
<FadeIn
className="font-sans w-auto pb-16 pt-[48px] md:pb-24 lg:pb-32 md:pt-16 lg:pt-20 flex justify-between gap-8 items-center flex-col relative z-0"
className="font-sans w-auto min-h-[calc(100svh-var(--nextra-navbar-height))] pb-16 pt-[48px] md:pb-24 lg:pb-32 md:pt-16 lg:pt-20 flex justify-between gap-8 items-center flex-col relative z-0"
noVertical
>
<FadeIn className="z-50 flex items-center justify-center w-full ">
Expand Down
Loading