fix max heights and stuff

This commit is contained in:
legop3
2025-11-24 02:57:08 -05:00
parent 03ef441f1b
commit 0e80bda371
7 changed files with 15 additions and 15 deletions
+2 -2
View File
@@ -25,7 +25,7 @@ function displayName(message) {
return message.nickname || message.socketId?.slice(0, 6) || 'unknown';
}
export default function ChatPanel({ hideInput = false, hideSpectatorNotice = false }) {
export default function ChatPanel({ hideInput = false, hideSpectatorNotice = false, maxHeightClass = '' }) {
const { session } = useSession();
const { messages, sendMessage, registerInputRef, onInputFocus, onInputBlur, blurChat } = useChat();
const [draft, setDraft] = useState('');
@@ -58,7 +58,7 @@ export default function ChatPanel({ hideInput = false, hideSpectatorNotice = fal
}
return (
<section className="panel-section flex h-full flex-col space-y-0.5 text-base">
<section className={`panel-section flex h-full flex-col space-y-0.5 text-base ${maxHeightClass}`}>
{/* <div className="flex items-center justify-between text-sm text-slate-400">
<span>Chat</span>
<span className="text-xs text-slate-500">{sorted.length}</span>