remove shadow

This commit is contained in:
Meliora Ho 2024-03-23 15:57:04 +00:00
parent 52e23b7f85
commit b30e09f47c

View File

@ -8,7 +8,7 @@ interface SidebarProps {
const Sidebar: React.FC<SidebarProps> = ({ setIsSidebarOpen }) => {
return (
<div className="w-64 h-full border border-gray-200 bg-gray-50 px-4 shadow">
<div className="w-64 h-full border border-gray-200 bg-gray-50 px-4">
<div className="flex justify-end">
<button
onClick={() => setIsSidebarOpen(false)}