Skip to content

Commit

Permalink
fix overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
GraemeFulton committed Jun 30, 2024
1 parent 064326b commit 40d7d6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/layoutForBlogPost.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function Layout({
</div>

<div
className={`min-h-screen ${NAV_OFFSET} ${padding == false ? "" : "px-3 md:px-8"}`}
className={`min-h-screen overflow-x-hidden md:overflow-x-visible ${NAV_OFFSET} ${padding == false ? "" : "px-3 md:px-8"}`}
style={{ background: background ? background : "#fbfcff" }}
>
<main
Expand Down
2 changes: 1 addition & 1 deletion components/layoutForToolboxIndex.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function Layout({
</div>

<div
className={`min-h-screen ${padding == false ? "" : "px-3 md:px-8"}`}
className={`min-h-screen overflow-x-hidden md:overflow-x-visible ${padding == false ? "" : "px-3 md:px-8"}`}
style={{ background: background ? background : "#fbfcff" }}
>
<main
Expand Down

0 comments on commit 40d7d6c

Please sign in to comment.