Fix x scrollbar on mobile
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Tyler Perkins 2022-12-17 20:10:19 -05:00
parent d41ef6ab30
commit d8ca953000

View File

@ -65,4 +65,16 @@ textarea {
html { html {
scroll-behavior: smooth; scroll-behavior: smooth;
width: 100vw;
} }
@media only screen and (max-width: 768px){
body {
overflow-x: hidden;
}
html {
overflow-x: hidden;
}
}