feat: disable scrolling past boundaries

This commit is contained in:
Barrett Ruth 2024-06-22 16:15:12 -05:00
parent 21d4270cf7
commit 373de60913
3 changed files with 2 additions and 4 deletions

View file

@ -5,5 +5,4 @@ My portfolio website
## todo ## todo
- Mobile support - Mobile support
- Problem toggler - Improve post h3 styling
- stop overflow

View file

@ -29,7 +29,7 @@
html, html,
body { body {
font-family: "Signifier", serif; font-family: "Signifier", serif;
overflow: hidden; overscroll-behavior: none;
margin: 0; margin: 0;
padding: 0; padding: 0;
height: 100%; height: 100%;

View file

@ -1,7 +1,6 @@
html, html,
body { body {
font-family: "Signifier", serif; font-family: "Signifier", serif;
overflow: scroll;
margin: 0; margin: 0;
padding: 0; padding: 0;
height: 100%; height: 100%;