Skip to content

Commit

Permalink
chore: reduce the max height of conversation card (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
josStorer committed Apr 5, 2023
1 parent f31a6d3 commit 60afbbd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/ConversationCard/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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) => (
Expand Down
2 changes: 1 addition & 1 deletion src/content-script/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@
color: var(--font-color);
resize: none;
min-height: 70px;
max-height: 240px;
max-height: 160px;
}

.dragbar {
Expand Down

0 comments on commit 60afbbd

Please sign in to comment.