diff --git a/src/App.css b/src/App.css
index f6c95c2..40af8c9 100644
--- a/src/App.css
+++ b/src/App.css
@@ -15,17 +15,21 @@
position: fixed;
top: 0;
left: 0;
- width: 300px;
+ width: 330px;
/* Adjust the width as needed */
height: 100vh;
- background-color: #fff;
+ background-color: #5c2684;
+ color: #FFFFFF;
+ padding-top: .9375rem;
/* Set the background color */
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
/* Add a box-shadow for visual separation */
transform: translateX(-100%);
/* Initially hide the sidebar */
- transition: transform 0.3s ease-in-out;
+ transition: transform 0.4s ease;
/* Add a transition for smooth animation */
+
+ z-index: 9;
}
.sidebar.open {
diff --git a/src/components/Footer/Footer.tsx b/src/components/Footer/Footer.tsx
index 287073b..ea9f0a4 100644
--- a/src/components/Footer/Footer.tsx
+++ b/src/components/Footer/Footer.tsx
@@ -1,4 +1,3 @@
-import React from 'react'
import { Link } from 'react-router-dom'
import FBook from '../../assets/icons/facebook.svg'
diff --git a/src/components/Header/Header.tsx b/src/components/Header/Header.tsx
index 3347aae..cbe2945 100644
--- a/src/components/Header/Header.tsx
+++ b/src/components/Header/Header.tsx
@@ -22,8 +22,6 @@ const Header = () => {
setIsSidebarOpen((prev) => !prev);
};
- console.log(isSidebarOpen);
-
return (
{isSidebarOpen && (
@@ -57,11 +55,15 @@ const Header = () => {