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

feat: increase hero height to reduce white space before animation loads #36

Merged
merged 3 commits into from
Jan 13, 2025
Merged
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
4 changes: 2 additions & 2 deletions src/components/Heroes/TertiaryHero.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ const TertiaryHero = ({
}) => {
return (
<section
className={`bg-white-weak relative border-b border-black lg:min-h-[550px]`}
className={`bg-white-weak relative border-b border-black lg:min-h-[750px]`}
>
<Container size={`lg`} className="relative z-10">
<div className={"pt-36 pb-16 lg:pt-56 lg:pb-20 lg:flex"}>
<div className={"pt-36 pb-24 lg:pt-56 lg:pb-32 lg:flex"}>
<div className="lg:w-7/12">
<div className="flex">
<div className={"w-full"}>
Expand Down
Loading