Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/componets/Navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const NavItem = styled(motion.div)`
position: relative;
padding: 0.5rem 0;

a {
a, span {
color: #e6d5b8;
font-family: 'Poppins', sans-serif;
font-weight: 500;
Expand Down Expand Up @@ -102,7 +102,7 @@ const NavItem = styled(motion.div)`
}
}

&.active a {
&.active a, &.active span {
color: #d2691e;
font-weight: 600;

Expand All @@ -127,7 +127,7 @@ const DropdownMenu = styled(motion.div)`
gap: 0.8rem;
z-index: 1001;

a {
a, span {
padding: 0.5rem 1rem;
border-radius: 4px;
transition: all 0.3s ease;
Expand Down