Skip to content

Commit

Permalink
docs: Fix overflow on devlog menu
Browse files Browse the repository at this point in the history
  • Loading branch information
kitten committed Apr 28, 2024
1 parent 75830e0 commit 9e6c463
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/.vitepress/theme/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@
:root .Layout .VPNavBar:not(.top) .wrapper {
position: relative;
border-bottom: 1px solid var(--vp-c-divider);
overflow: hidden;
}
}

Expand All @@ -155,12 +154,13 @@
@media (min-width: 1280px) {
:root .Layout .VPNavBar:not(.top) .wrapper:after {
backdrop-filter: blur(24px) saturate(250%);
height: calc(100% + 48px);
height: calc(100% + 24px);
display: block;
content: '';
position: absolute;
inset: 0;
top: -24px;
z-index: -1;
}
}

Expand Down

0 comments on commit 9e6c463

Please sign in to comment.