Skip to content

Commit

Permalink
Applied prettier formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
koss-service committed Jan 8, 2024
1 parent 51dc5a1 commit 8224cc1
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,9 @@ function Navbar() {
return (
<div className="fixed inset-x-0 z-[210] w-full">
<nav
className={`flex shadow-md mt-4 items-center justify-between max-w-7xl gap-4 mx-auto border border-[#FFFFFF]/[0.16] px-4 py-2 rounded-lg w-[95%] inset-x-0 backdrop-blur-md z-50 ${mobileMenuOpen ? "hidden" : ""
}`}
className={`flex shadow-md mt-4 items-center justify-between max-w-7xl gap-4 mx-auto border border-[#FFFFFF]/[0.16] px-4 py-2 rounded-lg w-[95%] inset-x-0 backdrop-blur-md z-50 ${
mobileMenuOpen ? "hidden" : ""
}`}
>
<BrandLogo />
<div className="lg:hidden ml-auto -mr-5">
Expand All @@ -134,8 +135,9 @@ function Navbar() {

<div className={`${mobileMenuOpen ? "hidden" : null}`}>
<ul
className={`lg:flex lg:items-center lg:w-auto lg:space-x-6 ${mobileMenuOpen ? "block" : "hidden"
}`}
className={`lg:flex lg:items-center lg:w-auto lg:space-x-6 ${
mobileMenuOpen ? "block" : "hidden"
}`}
>
{LinksList(false)}

Expand Down

0 comments on commit 8224cc1

Please sign in to comment.