Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions frontend/src/Components/common/Layout.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import React from "react";
import Sidebar from "./Sidebar";
import { useProfile } from "../../hooks/useProfile";
import UserIcon from "./userIcon";
import { useSidebar } from "../../hooks/useSidebar";

Expand Down Expand Up @@ -55,7 +54,10 @@ const Layout = ({ headerText, gridConfig, components, children = null }) => {
<div
className={`h-screen p-6 transition-all duration-300 ${isCollapsed ? "ml-20" : "ml-56"}`}
>
<div className="bg-[#FDFAE2] rounded-[3rem] h-full flex flex-col p-6">
<div
className="bg-[#FDFAE2] rounded-[3rem] h-full flex flex-col p-6"
style={{ boxShadow: "inset 0 6px 12px rgba(0, 0, 0, 0.12)" }}
>
{/* Header Section */}
<div className="flex items-center justify-between mb-4 flex-shrink-0">
<h1 className="text-3xl text-black">
Expand Down