Skip to content

Commit

Permalink
hotfix: fix overflow on projects carousel
Browse files Browse the repository at this point in the history
  • Loading branch information
MTG2000 committed Dec 27, 2023
1 parent 354634c commit 6d8c51c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion v2/src/app/home/Projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import React from "react";

export default function Projects() {
return (
<section id="projects" className="min-h-[min(95vh,1440px)]">
<section id="projects" className="min-h-[min(95vh,1440px)] overflow-hidden">
<Container wide>
<h2
className={`${condensedHeadings.className} text-primary text-h2 lg:text-[48px] font-light mb-24`}
Expand Down
2 changes: 1 addition & 1 deletion v2/src/app/home/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import WorkWithUs from "./WorkWithUs";
export default function Home() {
return (
<>
<main className="overflow-hidden">
<main className="">
<Hero />
<Projects />
<ResearchLab />
Expand Down

0 comments on commit 6d8c51c

Please sign in to comment.