From 819953ec87f4ff25af8223e486f4cd32ca4b8d6a Mon Sep 17 00:00:00 2001 From: Cyril MARPAUD Date: Wed, 15 Mar 2023 12:00:30 +0100 Subject: [PATCH] feat: hide scrollbar --- static/style.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/static/style.css b/static/style.css index 69dcc8c..9ca0c0f 100644 --- a/static/style.css +++ b/static/style.css @@ -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 {