Skip to content

Commit

Permalink
Fix theme icon
Browse files Browse the repository at this point in the history
  • Loading branch information
abdul-abdu committed May 9, 2024
1 parent f5cadb8 commit e003e4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sections/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ const ITEMS = [
export default function Navbar() {
return (
<>
<nav className="w-full py-4 font-mono ">
<nav className="w-full py-4 font-mono">
<div className="mx-auto max-w-7xl px-2 sm:px-6 lg:px-8">
<div className="flex flex-1 items-center justify-center sm:items-stretch sm:justify-start">
<div className="flex w-full justify-between align-baseline">
<div className="flex">
{ITEMS.map((item) => (
<ScrollLink
key={item.id}
className="flex justify-center p-2"
className="flex justify-center p-2 text-sm md:text-lg"
href={item.href}
>
{item.title}
Expand Down

0 comments on commit e003e4c

Please sign in to comment.