feat: add subtle shadows to chat input and sidebar

Added a box shadow to the chat input on desktop for depth
Added an inset shadow to the sidebar when open for visual separation
This commit is contained in:
Bohdan Triapitsyn
2026-07-18 00:18:28 +03:00
parent 17f1b24709
commit 2af5cd39d1
2 changed files with 2 additions and 0 deletions
@@ -128,6 +128,7 @@ export const Sidebar: React.FC<SidebarProps> = ({ isOpen, isMobile, children, cl
className={cn(
'relative flex h-full overflow-hidden border-r border-border/40 will-change-[width] motion-reduce:transition-none',
'bg-sidebar oc-vibrancy-surface',
isOpen && 'shadow-[inset_-2px_0_10px_-2px_rgb(0_0_0_/_0.06)]',
!isOpen && 'border-r-0',
className,
)}