diff --git a/src/components/sidebar.js b/src/components/sidebar.js
deleted file mode 100644
index 14dd8df..0000000
--- a/src/components/sidebar.js
+++ /dev/null
@@ -1,20 +0,0 @@
-import React from 'react'
-
-import styles from './sidebar.module.css'
-
-export default function Sidebar(props) {
- const { onClose } = props
- return (
-
-
{
- onClose()
- }}
- >
- {'⏩'}
-
-
{props.children}
-
- )
-}
diff --git a/src/components/sidebar.module.css b/src/components/sidebar.module.css
deleted file mode 100644
index 85744a5..0000000
--- a/src/components/sidebar.module.css
+++ /dev/null
@@ -1,31 +0,0 @@
-.container {
- background-color: var(--background-color);
- border-left: 3px solid var(--text-color);
- top: 0;
- right: 0px;
- height: 100%;
- width: 400px;
- max-width: 100%;
- position: fixed;
-
- display: flex;
-}
-
-.closeBorder {
- font-size: 14px;
- padding: 2px;
- cursor: pointer;
- display: flex;
- flex-flow: column;
- justify-content: center;
- color: white;
- background-color: #222;
-}
-
-.closeBorder:hover {
- background-color: #333;
-}
-
-.content {
- width: 100%;
-}