ZhongJingGPT / style.css
CMLL's picture
Update style.css
beb47a9 verified
raw
history blame
545 Bytes
h1 {
text-align: center;
display: block;
}
#chatbox {
height: 800px; /* 设置你想要的高度,可以根据需要调整 */
overflow-y: auto; /* 允许垂直滚动 */
padding: 10px; /* 设置内边距,提供更好的可读性 */
border: 1px solid #ccc; /* 添加边框,更好地区分Chatbox */
border-radius: 5px; /* 设置边框圆角 */
}
#duplicate-button {
margin: auto;
color: white;
background: #1565c0;
border-radius: 100vh;
}
.contain {
max-width: 900px;
margin: auto;
padding-top: 1.5rem;
}