Skip to content

Commit

Permalink
Merge branch 'develop' into devx/fix-ts-sdk-sidebar
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-tortora authored Nov 17, 2024
2 parents 3964829 + caed599 commit 0a6f4c9
Showing 1 changed file with 27 additions and 18 deletions.
45 changes: 27 additions & 18 deletions docs/site/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -123,26 +123,33 @@
color: white;
}
/** navbar overrides */
[data-theme="light"] .menu__link {
color: #525860;
[data-theme="light"] .clean-btn:hover {
background-color: #525860;
}

[data-theme="light"] .menu__link--active {
font-weight: bold;
color: #525860;
}
[data-theme="dark"] .menu__link--active {
font-weight: bold;
color: white;
}
.navbar-sidebar,
.menu__link {
color: rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .menu__link--active {
font-weight: bold;
color: #525860;
@media (min-width: 997px) {
[data-theme="light"] .menu__link:hover,
[data-theme="light"] .menu__link--active{
font-weight: bold;
color: var(--ifm-menu-color)
}
}
@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--active {
font-weight: bold;
color: white;
}
}

[data-theme="light"] .pagination-nav__label {
Expand Down Expand Up @@ -223,10 +230,6 @@
[data-theme="dark"] .pagination-nav__label--light {
color: white;
}
[data-theme="dark"] .navbar-sidebar .menu__link--active {
background-color: rgba(11, 11, 11, 0.607);
color: var(--iota-gray-100);
}
html[data-theme="dark"] {
background-color: var(--iota-black);
}
Expand Down Expand Up @@ -362,7 +365,6 @@ h4 {
}
.navbar__items .navbar__brand {
width: 17%;

color: rgba(255, 255, 255, 0.7);
}
.navbar__items .navbar__item.navbar__link {
Expand All @@ -373,6 +375,13 @@ h4 {
letter-spacing: -0.02em;
color: rgba(255, 255, 255, 0.7);
}


.navbar__items .navbar__item.navbar__link--active {
font-weight: bold;
color:white;
}

.navbar__items_wrapper {
display: flex;
column-gap: 0rem;
Expand Down

0 comments on commit 0a6f4c9

Please sign in to comment.