Skip to content

Commit

Permalink
fix media query
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-tortora committed Nov 15, 2024
1 parent 36f55a6 commit 3c55089
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions docs/site/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -132,25 +132,21 @@
color: white;
}

@media (min-width: 769px) {
@media (min-width: 997px) {
[data-theme="light"] .menu__link:hover,
[data-theme="light"] .menu__link--active{
font-weight: bold;
color: var(--ifm-menu-color);
color: var(--ifm-menu-color)
}
}
@media (max-width: 768px) {
@media (max-width: 996px) {
.navbar-sidebar,
.menu__link {
color: rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .menu__list-item-collapsible:hover,

[data-theme="light"] .menu__link:hover{
background-color: #525860;
}
[data-theme="light"] .menu__link--active {
[data-theme="light"] .menu__link--active {
font-weight: bold;
color: white;
}
Expand Down

0 comments on commit 3c55089

Please sign in to comment.