update @ Mon 1 Nov 20:05:35 EET 2021

This commit is contained in:
Ari Archer 2021-11-01 20:05:35 +02:00
parent cbc77f4e06
commit 627bc0644e
5 changed files with 39 additions and 1 deletions

View file

@ -1,3 +1,3 @@
{
"compile-hero.disable-compile-files-on-did-save-code": true
"compile-hero.disable-compile-files-on-did-save-code": false
}

View file

@ -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 {

View file

@ -8,8 +8,18 @@
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;
margin-bottom: 2em;

View file

@ -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,

View file

@ -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,