mirror of
https://github.com/aljazceru/AgentGPT.git
synced 2025-12-17 14:04:25 +01:00
🚀 Fix scroll bar styling
This commit is contained in:
@@ -11,12 +11,12 @@ const ChatWindow = ({ children, className }: ChatWindowProps) => {
|
||||
return (
|
||||
<div
|
||||
className={
|
||||
"border-translucent flex h-full w-full flex-col rounded-3xl border-2 border-white/20 bg-zinc-900 text-white shadow-2xl drop-shadow-lg " +
|
||||
"border-translucent flex h-full max-h-full w-full flex-col rounded-3xl border-2 border-white/20 bg-zinc-900 text-white shadow-2xl drop-shadow-lg " +
|
||||
className
|
||||
}
|
||||
>
|
||||
<MacWindowHeader />
|
||||
<div className="overflow-y-scroll">{children}</div>
|
||||
<div className="mb-3 mr-3 max-h-[100%] overflow-y-auto">{children}</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user