diff --git a/README.md b/README.md
index 66a06cda0..0fba1d183 100644
--- a/README.md
+++ b/README.md
@@ -35,6 +35,6 @@ If you wish to support further development and feeling extra awesome, you can do
1. Head to [the firebase console](https://console.firebase.google.com/u/0/) and make a new project (the project name doesnt really matter, but just name it `monkey-type`). You dont need to enable analytics for it.
2. Install the [Firebase Command Line Interface](https://firebase.google.com/docs/cli), and use `firebase login` to log in to the same google account as you just used to make the project
3. Make sure the project name inside `.firebaserc` is the same as what you made it in step 1
-4. Git clone the project and then run `firebase serve --only functions` to start a local server on post 5000. Use ctrl+c to stop it.
+4. Git clone the project and then run `firebase serve --only hosting` to start a local server on post 5000. Use ctrl+c to stop it.
That should be it. If you run into any problems, let me know.
diff --git a/public/css/style.scss b/public/css/style.scss
index df4569306..2fbef8004 100644
--- a/public/css/style.scss
+++ b/public/css/style.scss
@@ -351,6 +351,21 @@ a:hover {
transition: 0.25s;
padding: 0.5rem;
border-radius: var(--roundness);
+ &.discord{
+ position: relative;
+ &::after{
+ transition: .25s;
+ width: .5rem;
+ height: .5rem;
+ content: "";
+ position: absolute;
+ background: #da3333;
+ border-radius: 1rem;
+ top: .25rem;
+ right: .25rem;
+ border: 2px solid var(--bg-color);
+ }
+ }
&:focus{
background: var(--sub-color);
color: var(--main-color);
@@ -360,6 +375,9 @@ a:hover {
}
}
+#top.focus #menu .button.discord::after{
+ background: transparent;
+}
#menu .button .icon {
display: grid;
diff --git a/public/index.html b/public/index.html
index e8e3a5406..d53afd6ec 100644
--- a/public/index.html
+++ b/public/index.html
@@ -82,6 +82,11 @@
+
+