Skip to content

Commit

Permalink
Merge pull request #451 from dhairyagothi/dev
Browse files Browse the repository at this point in the history
Fixed text colour in mobile view
  • Loading branch information
dinxsh authored Jul 1, 2024
2 parents fac6d98 + a06b4f7 commit 2c00975
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions src/components/header/nav/nav.css
Original file line number Diff line number Diff line change
Expand Up @@ -284,3 +284,32 @@ nav .all_menu li {
font-weight: bold;
color: #191717;
}

@media (max-width:768px) {
.dropdown_menu ul li button a {
color: white;

}
.nav nav .dropdown_menu li button a {
color: white;

}
.dropdown_menu ul li button a:hover {
color: #3bb77e;

}
.megaMenu .col ul li a {
color: white;
}
.part2 ul li button:hover a {
color: white !important;
}
.nav nav .dropdown_menu.open{
backdrop-filter: blur(14px) saturate(135%);
-webkit-backdrop-filter: blur(14px) saturate(135%);
background-color: rgba(59, 183, 126, 0.49);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.125);

}
}

0 comments on commit 2c00975

Please sign in to comment.