Skip to content

Commit

Permalink
scroll bar remove
Browse files Browse the repository at this point in the history
  • Loading branch information
VinayLodhi1712 committed Oct 13, 2024
1 parent ec04bf1 commit b228dd5
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion frontend/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,30 @@
}


html {
overflow-y: scroll;
scrollbar-width: none;
}


body {
overflow-y: scroll;
height: 100vh;
margin: 0;
scrollbar-width: none;
-ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
width: 0;
display: none;
}

.scrollable-element {
overflow-y: scroll;
scrollbar-width: none;
}

.scrollable-element::-webkit-scrollbar {
width: 0;
}

0 comments on commit b228dd5

Please sign in to comment.