Skip to content

Commit

Permalink
Omit the nav bar title
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb committed Jul 31, 2024
1 parent 0b8b0e0 commit f1a7314
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/stylesheets/extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,20 @@ This is a consequence of the reduced nav spacing below. */
box-shadow: none;
}

/* Omits the nav title "uv" entirely unless on a small screen, in which case
the nav title is needed for backwards navigation in the collapsible
nav variant.
See https://github.com/astral-sh/uv/issues/5130 */
.md-nav__title {
display: none;
}
@media screen and (max-width: 1219px) {
.md-nav__title {
display: flex ;
}
}

/* Reducing spacing between nav items to fit more content */
.md-nav__link {
margin-top: 0.25em;
Expand Down

0 comments on commit f1a7314

Please sign in to comment.