Skip to content

Commit

Permalink
style(nav): fix X icon visibility issue (#1092)
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegDev1 authored Nov 19, 2024
1 parent 6ca6764 commit 29c6c58
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/components/Nav.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,14 @@

.icon svg {
height: 16px;
fill: white;
transition: 0.3s all;
margin-top: 6px;
}

:global(.dark) .icon svg {
fill: white;
}

.icon svg:hover {
opacity: 0.5;
}
Expand Down Expand Up @@ -153,6 +156,10 @@ a.legacyLink {
}

@media (min-width: 1040px) {
.icon svg {
fill: white;
}

.mobileOnly {
display: none;
}
Expand Down

0 comments on commit 29c6c58

Please sign in to comment.