Spaces:
Running
on
Zero
Running
on
Zero
h1 { | |
text-align: center; | |
display: block; | |
} | |
#duplicate-button { | |
margin: auto; | |
color: white; | |
background: #1565c0; | |
border-radius: 100vh; | |
} | |
.contain { | |
max-width: 900px; | |
margin: auto; | |
padding-top: 1.5rem; | |
} | |
/* 新增:增加聊天框高度 */ | |
.chatbox-container { | |
height: 80vh; /* 视窗高度的80% */ | |
overflow-y: auto; /* 允许垂直滚动 */ | |
} | |
.message { | |
max-height: none; /* 移除最大高度限制 */ | |
} | |
/* 其他 CSS 样式保持不变 */ | |
/* 优化滚动条样式 */ | |
.chatbox-container::-webkit-scrollbar { | |
width: 10px; | |
} | |
.chatbox-container::-webkit-scrollbar-track { | |
background: #f1f1f1; | |
} | |
.chatbox-container::-webkit-scrollbar-thumb { | |
background: #888; | |
border-radius: 5px; | |
} | |
.chatbox-container::-webkit-scrollbar-thumb:hover { | |
background: #555; | |
} |