diff --git a/frontend/src/App.css b/frontend/src/App.css index 0a287d3..fcb31c2 100644 --- a/frontend/src/App.css +++ b/frontend/src/App.css @@ -67,7 +67,21 @@ body.sessions-open .sessions-wrapper { box-shadow: 6px 0 20px rgba(0, 0, 0, 0.08); } -/* rest of your existing chat styles unchanged... */ +.offcanvas-left { + position: fixed; + top: 0; + left: -300px; /* panel width */ + width: 300px; + height: 100%; + background: var(--bs-body-bg, #fff); + box-shadow: 2px 0 5px rgba(0,0,0,0.3); + transition: left 0.3s ease; + z-index: 1050; +} + +.offcanvas-left.show { + left: 0; +} /* Chat styles */ diff --git a/frontend/src/ChatHeader.jsx b/frontend/src/ChatHeader.jsx index 3537950..2166512 100644 --- a/frontend/src/ChatHeader.jsx +++ b/frontend/src/ChatHeader.jsx @@ -54,7 +54,7 @@ export default function ChatHeader({ {/* Right column: theme toggle */} -