mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-14 17:03:29 +03:00
style: fix hidden contents (#1577)
Fix https://github.com/StanGirard/quivr/issues/1576
This commit is contained in:
parent
5c732f1253
commit
1905bd42f6
@ -38,7 +38,7 @@ export const BrainManagementTabs = (): JSX.Element => {
|
||||
return (
|
||||
<div className="flex justify-center w-full">
|
||||
<Root
|
||||
className="flex flex-col w-full h-full overflow-hidden bg-white dark:bg-black p-4 md:p-10 max-w-5xl"
|
||||
className="flex flex-col w-full h-full overflow-scroll bg-white dark:bg-black p-4 md:p-10 max-w-5xl"
|
||||
value={selectedTab}
|
||||
>
|
||||
<List
|
||||
|
@ -14,7 +14,7 @@ const BrainsLibrary = (): JSX.Element => {
|
||||
const { t } = useTranslation("brain");
|
||||
|
||||
return (
|
||||
<div className="flex flex-1 flex-col items-center">
|
||||
<div className="flex flex-1 flex-col items-center overflow-scroll">
|
||||
<div className="flex">
|
||||
<Field
|
||||
value={searchBarText}
|
||||
|
@ -11,7 +11,6 @@ const SelectedChatPage = (): JSX.Element => {
|
||||
const { shouldDisplayFeedCard } = useKnowledgeToFeedContext();
|
||||
|
||||
return (
|
||||
<>
|
||||
<div
|
||||
className={`flex flex-col flex-1 items-center justify-stretch w-full h-full overflow-hidden ${
|
||||
shouldDisplayFeedCard ? "bg-chat-bg-gray" : "bg-white"
|
||||
@ -28,7 +27,6 @@ const SelectedChatPage = (): JSX.Element => {
|
||||
<ActionsBar />
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user