refactor(sidebar): enhance layout and styling in FolderTreeView and AllChatsSidebar

- Removed unnecessary min-height and overflow properties in FolderTreeView and DocumentsSidebar for cleaner layout.
- Updated AllChatsSidebar to improve header styling and adjust padding for better visual consistency.
- Enhanced input and button sizes for improved usability across chat components.
This commit is contained in:
Anish Sarkar 2026-07-06 13:05:11 +05:30
parent e24abd7eac
commit 192b9840f2
4 changed files with 137 additions and 132 deletions

View file

@ -336,7 +336,7 @@ export function FolderTreeView({
return (
<DndProvider backend={HTML5Backend}>
<div className="flex-1 min-h-0 overflow-y-auto px-2 py-1">{treeNodes}</div>
<div className="px-2 py-1">{treeNodes}</div>
</DndProvider>
);
}