Add HideScrollbar

This commit is contained in:
2023-09-08 00:48:05 +08:00
parent 02fe0739fd
commit e191881a33
4 changed files with 103 additions and 37 deletions

View File

@@ -0,0 +1,15 @@
body {
overflow: hidden;
}
#root {
height: 100vh;
width: 100vw;
}
#hide-scrollbar {
position: relative;
height: 100vh;
width: 100vw;
overflow: scroll;
}