🎨 Improve responsiveness

This commit is contained in:
adam.watkins
2023-04-08 08:04:26 +03:00
parent 611b9f06c3
commit f27577b179
7 changed files with 38 additions and 94 deletions

View File

@@ -4,7 +4,7 @@ import React, { useEffect, useRef } from "react";
interface ChatWindowProps {
children?: ReactNode;
className: string;
className?: string;
messages: Message[];
}
@@ -22,7 +22,7 @@ const ChatWindow = ({ messages, children, className }: ChatWindowProps) => {
<div
className={
"border-translucent flex w-full flex-col rounded-3xl border-2 border-white/20 bg-zinc-900 text-white shadow-2xl drop-shadow-lg " +
className
(className ?? "")
}
>
<MacWindowHeader />