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
2 changes: 1 addition & 1 deletion chat/src/components/chat-interface.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ export function ChatInterface() {
className={`flex flex-col min-h-screen items-center justify-center px-4 py-6 flex-1 transition-all duration-300 ${authenticated && !isMobile ? 'ml-[260px]' : 'ml-0'}`}
>
{/* Header */}
<div className="fixed top-0 right-0 z-50 p-4 flex items-center gap-2" style={{ left: authenticated && !isMobile ? 260 : 0 }}>
<div className={`fixed top-0 right-0 p-4 flex items-center gap-2 ${sidebarOpen ? 'z-30' : 'z-50'}`} style={{ left: authenticated && !isMobile ? 260 : 0 }}>
{isMobile && authenticated && (
<button
onClick={() => setSidebarOpen(true)}
Expand Down