Skip to content

Commit

Permalink
Fix breadcrumb nav disappearing on small width
Browse files Browse the repository at this point in the history
  • Loading branch information
zlovatt committed Oct 7, 2024
1 parent ef67459 commit 495a687
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/_static/extra.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
:root {}

/* Duplicated here to override screen-size limit*/
.breadcrumb.md-nav__icon::after {
background-color: currentcolor;
border-radius: 100%;
content: "";
display: inline-block;
-webkit-mask-image: var(--md-nav-icon--next);
mask-image: var(--md-nav-icon--next);
-webkit-mask-position: center;
mask-position: center;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-size: contain;
mask-size: contain;

height: 0.9rem;
width: 0.9rem;
vertical-align: -0.2rem;
Expand Down

0 comments on commit 495a687

Please sign in to comment.