Skip to content

Commit

Permalink
hide scroll bar on IE and Edge
Browse files Browse the repository at this point in the history
  • Loading branch information
suneox committed Sep 19, 2023
1 parent 4ab13be commit 2c0109b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/_sass/_search-bar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ $color-gray-label: $color-gray-label;
background-color: $color-appBG;
width: 375px;
position: fixed;
display: block;
display: flex;
flex-direction: column;
bottom: 0;
Expand All @@ -36,10 +35,11 @@ $color-gray-label: $color-gray-label;
#sidebar-search > div:last-child {
flex-grow: 1;
overflow-y: auto;
}

#sidebar-search>div:last-child::-webkit-scrollbar {
display: none;
-ms-overflow-style: none;
scrollbar-width: none;
&::-webkit-scrollbar {
display: none;
}
}

@media only screen and (max-width: $breakpoint-tablet) {
Expand Down

0 comments on commit 2c0109b

Please sign in to comment.