chore: reduce the max height of conversation card (#141)

This commit is contained in:
josc146
2023-04-05 13:24:56 +08:00
parent b33153db0d
commit 0a183a9ebf
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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) => (
+1 -1
View File
@@ -210,7 +210,7 @@
color: var(--font-color);
resize: none;
min-height: 70px;
max-height: 240px;
max-height: 160px;
}
.dragbar {