Skip to content

Commit

Permalink
fix: subitems menu height restricted only for horizontal mode (#1492)
Browse files Browse the repository at this point in the history
  • Loading branch information
mfranzke authored Mar 12, 2023
1 parent dd8895d commit e65f294
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,9 @@

.pl-c-body--theme-horizontal & {
overflow: auto;
}

@media all and (min-width: $pl-bp-med) {
height: auto;
max-height: calc(100vh - #{$offset-top} - 2rem); /* 1 */
@media all and (min-width: $pl-bp-med) {
max-height: calc(100vh - #{$offset-top} - 2rem); /* 1 */
}
}
}

0 comments on commit e65f294

Please sign in to comment.