diff --git a/README.md b/README.md
index 495a7042..a558ebd5 100644
--- a/README.md
+++ b/README.md
@@ -65,6 +65,8 @@
 Ylarod 🔧 🐛 |
+  Joshua Astray 🔧 🐛 |
+
diff --git a/components/SideBarDrawer.js b/components/SideBarDrawer.js
index dac43d75..47052db9 100644
--- a/components/SideBarDrawer.js
+++ b/components/SideBarDrawer.js
@@ -29,22 +29,22 @@ const SideBarDrawer = ({ children, isOpen, onOpen, onClose, className }) => {
const sideBarDrawerBackground = window.document.getElementById('sidebar-drawer-background')
if (showStatus) {
- sideBarDrawer.classList.replace('-ml-56', 'ml-0')
+ sideBarDrawer.classList.replace('-ml-60', 'ml-0')
sideBarDrawerBackground.classList.replace('hidden', 'block')
} else {
- sideBarDrawer.classList.replace('ml-0', '-ml-56')
+ sideBarDrawer.classList.replace('ml-0', '-ml-60')
sideBarDrawerBackground.classList.replace('block', 'hidden')
}
}
- return