diff --git a/src/components/layout.js b/src/components/layout.js
index 0a514a4..5e2ebb3 100644
--- a/src/components/layout.js
+++ b/src/components/layout.js
@@ -89,7 +89,7 @@ export default function Layout({
{sidebarOpen ? (
<>
-
diff --git a/src/components/modal.module.css b/src/components/modal.module.css
index 9d098a5..4723bd0 100644
--- a/src/components/modal.module.css
+++ b/src/components/modal.module.css
@@ -20,3 +20,14 @@
padding: 20px;
cursor: auto;
}
+
+.close {
+ cursor: pointer;
+ font-size: 18px;
+ position: absolute;
+
+ position: absolute;
+ top: 10px;
+ right: 10px;
+ display: inline;
+}
diff --git a/src/defaultStyles.css b/src/defaultStyles.css
index 0857e6c..20c379a 100644
--- a/src/defaultStyles.css
+++ b/src/defaultStyles.css
@@ -42,7 +42,7 @@ a {
padding: 1px 16px;
}
-.sidebar a {
+.sidebarLinks a {
display: block;
color: black;
padding: 16px;
@@ -50,12 +50,12 @@ a {
color: var(--bright-color);
}
-.sidebar a.active {
+.sidebarLinks a.active {
background-color: var(--text-color);
color: black;
}
-.sidebar a:hover:not(.active) {
+.sidebarLinks a:hover:not(.active) {
background-color: #555;
color: white;
}