Skip to content

Commit e823e2a

Browse files
committed
chore: fix navbar width in small screen
1 parent 1a42306 commit e823e2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/components/Navbar.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Link from "next/link";
55
export function Navbar() {
66
return (
77
<nav className="fixed top-0 left-0 right-0 z-50 px-4 py-4 backdrop-blur-sm flex justify-center">
8-
<div className="w-[80%] transition-all duration-300 bg-gray-900/90 rounded-2xl px-6 py-3">
8+
<div className="w-full md:w-[80%] transition-all duration-300 bg-gray-900/90 rounded-2xl px-6 py-3">
99
<div className="flex items-center justify-between">
1010
<div className="flex items-center space-x-3">
1111
<div className="p-2 bg-gray-800/50 rounded-xl">

0 commit comments

Comments
 (0)