Fix sidebar footer positioning
This commit is contained in:
parent
fbbc479032
commit
782ac937e6
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@ export default function AdminLayout({ children }: { children: React.ReactNode })
|
|||
return (
|
||||
<div className="min-h-screen bg-gray-900 text-white flex">
|
||||
{/* Sidebar */}
|
||||
<aside className={`${sidebarOpen ? "w-64" : "w-16"} bg-gray-800 flex-shrink-0 transition-all duration-300`}>
|
||||
<aside className={`${sidebarOpen ? "w-64" : "w-16"} bg-gray-800 flex-shrink-0 transition-all duration-300 relative`}>
|
||||
{/* Header */}
|
||||
<div className="p-4 flex items-center justify-between border-b border-gray-700">
|
||||
{sidebarOpen && (
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue