调整聊天框宽度限制,调整 header 按钮位置
Build Push and Deploy / docker-image (push) Successful in 1m38s
Build Push and Deploy / deploy-fallback-log (push) Has been skipped

This commit is contained in:
2026-05-20 11:43:58 +08:00
parent adf8ea5ca8
commit 98635e5247
2 changed files with 6 additions and 7 deletions
+1 -1
View File
@@ -159,7 +159,7 @@ export const GlobalChatbox: React.FC<Props> = ({ open, onClose }) => {
const handleMouseMove = (event: MouseEvent) => {
if (!isResizing) return;
const newWidth = window.innerWidth - event.clientX;
if (newWidth > 360 && newWidth < 1240) {
if (newWidth > 360 && newWidth < 800) {
setWidth(newWidth);
}
};