remove scrollbar for all major web browsers

This commit is contained in:
timmypidashev
2021-09-21 17:01:30 -07:00
parent caca5b16c5
commit be9d5be429

View File

@@ -11,12 +11,19 @@ html {
font-weight: 400; font-weight: 400;
font-size: 1vh; font-size: 1vh;
text-shadow: 3px 2px 2px rgba(199, 130, 59, 0.15); text-shadow: 3px 2px 2px rgba(199, 130, 59, 0.15);
-ms-overflow-style: none; /* Hide scrollbar for Internet Explorer and Edge */
scrollbar-width: none; /* Hide scrollbar for Firefox */
scroll-behavior: smooth; scroll-behavior: smooth;
} }
/* Hide scrollbar for Chrome, Safari and Opera */
.html::-webkit-scrollbar {
display: none;
}
#end__of__page { #end__of__page {
margin-bottom: -30vh; margin-bottom: -30vh;
} }
.centered { .centered {
display: flex; display: flex;