diff --git a/.vscode/settings.json b/.vscode/settings.json index a1c4910..28a51d5 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,3 @@ { - "compile-hero.disable-compile-files-on-did-save-code": true + "compile-hero.disable-compile-files-on-did-save-code": false } \ No newline at end of file diff --git a/content/styles/generic/main.css b/content/styles/generic/main.css index 7860356..d9d6986 100644 --- a/content/styles/generic/main.css +++ b/content/styles/generic/main.css @@ -4,6 +4,17 @@ margin: 0; font-family: monospace; color: #ffffff; + scroll-behavior: smooth; + -ms-overflow-style: none; + /* for Internet Explorer, Edge */ + scrollbar-width: none; + /* for Firefox */ + overflow-y: scroll; +} + +::-webkit-scrollbar { + display: none; + /* for Chrome, Safari, and Opera */ } html, body { diff --git a/content/styles/generic/main.scss b/content/styles/generic/main.scss index 56b5e83..5411f27 100644 --- a/content/styles/generic/main.scss +++ b/content/styles/generic/main.scss @@ -8,7 +8,17 @@ font-family: $font_default; color: $default_content_colour; + + scroll-behavior: smooth; + -ms-overflow-style: none; /* for Internet Explorer, Edge */ + scrollbar-width: none; /* for Firefox */ + overflow-y: scroll; } + +::-webkit-scrollbar { + display: none; /* for Chrome, Safari, and Opera */ +} + html, body { background-color: $bg_colour; diff --git a/content/styles/novpn/index.css b/content/styles/novpn/index.css index a2f1590..89085eb 100644 --- a/content/styles/novpn/index.css +++ b/content/styles/novpn/index.css @@ -5,6 +5,16 @@ color: white; font-family: sans; scroll-behavior: smooth; + -ms-overflow-style: none; + /* for Internet Explorer, Edge */ + scrollbar-width: none; + /* for Firefox */ + overflow-y: scroll; +} + +::-webkit-scrollbar { + display: none; + /* for Chrome, Safari, and Opera */ } html, diff --git a/content/styles/novpn/index.scss b/content/styles/novpn/index.scss index 3262d26..cda10c6 100644 --- a/content/styles/novpn/index.scss +++ b/content/styles/novpn/index.scss @@ -7,6 +7,13 @@ color: $default-font-colour; font-family: $default-font; scroll-behavior: smooth; + -ms-overflow-style: none; /* for Internet Explorer, Edge */ + scrollbar-width: none; /* for Firefox */ + overflow-y: scroll; +} + +::-webkit-scrollbar { + display: none; /* for Chrome, Safari, and Opera */ } html,