Skip to content

Commit 5cdcd62

Browse files
author
Dobromir Hristov
committed
fix: set a hard height on the Navigator
1 parent 95f3b49 commit 5cdcd62

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/components/Navigator.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,10 +181,9 @@ export default {
181181
.navigator {
182182
position: sticky;
183183
top: $nav-height;
184-
max-height: calc(100vh - #{$nav-height} - var(--sticky-top-offset));
185-
height: 100%;
184+
height: calc(100vh - #{$nav-height} - var(--sticky-top-offset));
186185
box-sizing: border-box;
187-
transition: max-height 0.3s linear;
186+
transition: height 0.3s linear;
188187
border-left: 1px solid var(--color-grid);
189188
190189
@include breakpoint(small) {

0 commit comments

Comments
 (0)