mirror of
https://github.com/wassname/chatGPTBox.git
synced 2026-07-03 13:09:07 +08:00
chore: reduce the max height of conversation card (#141)
This commit is contained in:
@@ -346,7 +346,7 @@ function ConversationCard(props) {
|
||||
style={
|
||||
props.notClampSize
|
||||
? { flexGrow: 1 }
|
||||
: { maxHeight: windowSize[1] * 0.75 + 'px', resize: 'vertical' }
|
||||
: { maxHeight: windowSize[1] * 0.55 + 'px', resize: 'vertical' }
|
||||
}
|
||||
>
|
||||
{conversationItemData.map((data, idx) => (
|
||||
|
||||
@@ -210,7 +210,7 @@
|
||||
color: var(--font-color);
|
||||
resize: none;
|
||||
min-height: 70px;
|
||||
max-height: 240px;
|
||||
max-height: 160px;
|
||||
}
|
||||
|
||||
.dragbar {
|
||||
|
||||
Reference in New Issue
Block a user