style(SessionsTab): adjust overflow styling for better scroll behavior

This commit is contained in:
icarus 2025-09-26 13:50:44 +08:00
parent 67fa5df611
commit c9381d672e

View File

@ -32,7 +32,7 @@ const SessionsTab: FC<SessionsTabProps> = () => {
exit={{ width: 0, opacity: 0 }} exit={{ width: 0, opacity: 0 }}
transition={{ duration: 0.5, ease: 'easeInOut' }} transition={{ duration: 0.5, ease: 'easeInOut' }}
className={cn( className={cn(
'overflow-auto', 'overflow-y-auto overflow-x-hidden',
topicPosition === 'right' && navbarPosition === 'top' ? 'rounded-l-2xl border-t border-b border-l' : undefined topicPosition === 'right' && navbarPosition === 'top' ? 'rounded-l-2xl border-t border-b border-l' : undefined
)}> )}>
{!activeAgentId ? ( {!activeAgentId ? (