feat: hide scrollbar

This commit is contained in:
Cyril MARPAUD
2023-03-15 12:00:30 +01:00
parent 11a81b3b55
commit 819953ec87

View File

@ -26,7 +26,15 @@ html {
body {
font-family: 'Roboto', sans-serif;
overflow: overlay;
/* IE and Edge */
-ms-overflow-style: none;
/* Firefox */
scrollbar-width: none;
}
/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
display: none;
}
#particles {