Skip to content

Commit

Permalink
Prevent horizontal scrolling
Browse files Browse the repository at this point in the history
  • Loading branch information
martimpassos authored Jan 25, 2024
1 parent 814d0b7 commit 46610ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function Home() {
}, []);

return (
<main className="w-full h-screen">
<main className="w-screen h-screen">
{isReady ? (
<>
<section id="home" className="flex flex-col w-full h-full font-jost">
Expand All @@ -25,7 +25,7 @@ export default function Home() {
</p>
</div>
</section>
<section className="flex flex-wrap w-screen font-jost mb-10">
<section className="flex flex-wrap w-full font-jost mb-10">
<div id="o-que-fazemos" className="w-10/12 h-fit mb-20 ml-[8vw]">
<div className="max-w-prose">
<h2 className="font-bold text-3xl mb-4">O que fazemos</h2>
Expand Down

0 comments on commit 46610ff

Please sign in to comment.