Skip to content
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 src/components/Index/Hero.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
const Hero = () => (
<section
id="hero"
className="flex w-full mx-auto bg-right bg-cover mt-14 md:pt-0 md:items-center bg-hero-background h-[24rem]"
className="flex w-full mx-auto bg-right bg-cover mt-14 md:pt-0 md:items-center bg-hero-background h-[24rem] lg:max-w-[1490px]"
>
<div className="container mx-auto">
<div className="flex flex-col items-start justify-center w-full px-6 tracking-wide lg:w-1/2">
Expand Down
18 changes: 10 additions & 8 deletions src/components/Layout/Layout.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,16 @@ const Layout = ({ children, title }: ILayoutProps) => {
}, [refetch]);

return (
<div className="flex flex-col min-h-screen container min-w-[140vw] md:min-w-[700px] md:px-[2.5rem] md:py-[1rem]">
<Header title={title} />
<PageTitle title={title} />
<main className="flex-grow">
{children}
</main>
<Footer />
<Stickynav />
<div className="flex flex-col min-h-screen w-full mx-auto">
<div className="container min-w-[140vw] sm:min-w-[100vw] md:px-4 lg:px-6 py-2 lg:max-w-[1600px] mx-auto">
<Header title={title} />
<PageTitle title={title} />
<main className="flex-grow">
{children}
</main>
<Footer />
<Stickynav />
</div>
</div>
);
};
Expand Down
Loading