Skip to content

Commit 5acd55c

Browse files
Fix overflow
1 parent 112b237 commit 5acd55c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/page.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export default function Home() {
113113
}
114114

115115
return (
116-
<div ref={fullscreenRef} className={`flex flex-col ${darkMode == true ? "dark bg-background" : "bg-foreground/10"}`}>
116+
<div ref={fullscreenRef} className={`flex flex-col overflow-hidden ${darkMode == true ? "dark bg-background" : "bg-foreground/10"}`}>
117117
<nav className={`flex z-50 flex-row justify-between items-center px-5 py-3 ${isFullscreen ? "absolute top-1 left-1 w-full rounded-lg opacity-0 transition-opacity duration-300 bg-foreground/40 hover:opacity-100" : "bg-foreground"}`}>
118118
<div className="flex relative justify-center items-center">
119119
<div onClick={() => setAboutMenuOpen(!aboutMenuOpen)} className="inline-flex items-center space-x-2 group hover:cursor-pointer">

0 commit comments

Comments
 (0)