Skip to content

Commit

Permalink
fix(ui): hide vertical overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
RaneHyv committed Feb 27, 2024
1 parent 9f8817c commit f37abac
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 4 additions & 1 deletion frontend/theme/extras/header.less
Original file line number Diff line number Diff line change
Expand Up @@ -450,9 +450,12 @@ nav.navigation {
.mobile-menu-nav {
align-items: flex-start;
margin-top: 8.5rem;
background-color: @theme-color-blue;
.ui.container{
height: 75%;
height: 100%;
overflow-y: auto;
background-color: @theme-color-blue;
padding-bottom: 20rem;
&::-webkit-scrollbar {
display: none;
}
Expand Down
4 changes: 4 additions & 0 deletions frontend/theme/extras/main.less
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
html {
overflow-y: hidden;
}

body {
font-display: swap;
}
Expand Down

0 comments on commit f37abac

Please sign in to comment.