diff --git a/components/Navbar/Links/navlinks.module.css b/components/Navbar/Links/navlinks.module.css
index d498a02..2abc96c 100644
--- a/components/Navbar/Links/navlinks.module.css
+++ b/components/Navbar/Links/navlinks.module.css
@@ -14,6 +14,10 @@
overflow-y: auto;
}
+.navLinkDesktop li, .navLinkMobile li {
+ list-style: none;
+}
+
.link, .navLinkDesktop {
font-size: 1rem;
line-height: 1.5;
@@ -33,6 +37,7 @@
.navLinkMobile li {
max-width: 360px;
width: 100%;
+ list-style: none;
}
.navLinkDesktop {
diff --git a/pages/app.js b/pages/app.js
index a7d2c45..89629e1 100644
--- a/pages/app.js
+++ b/pages/app.js
@@ -19,11 +19,11 @@ const App = () => {
const gridElement = document.getElementById('grid')
if (query.matches) {
setMatched(true)
- gridElement.style.gridTemplateColumns = '1fr 5px 1fr'
+ gridElement.style.gridTemplateColumns = '1fr 8px 1fr'
gridElement.style.gridTemplateRows = '1fr'
} else {
setMatched(false)
- gridElement.style.gridTemplateRows = '1fr 5px 1fr'
+ gridElement.style.gridTemplateRows = '1fr 8px 1fr'
gridElement.style.gridTemplateColumns = '1fr'
}
}, [])
@@ -56,7 +56,7 @@ const App = () => {