Skip to content

Commit

Permalink
style: adjust message container padding and action opacity
Browse files Browse the repository at this point in the history
  • Loading branch information
nl0 committed Oct 8, 2024
1 parent 6bf0cef commit 7aa0264
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions catalog/app/components/Assistant/UI/Chat/Chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ const useMessageContainerStyles = M.makeStyles((t) => ({
display: 'flex',
gap: t.spacing(1),
justifyContent: 'flex-end',
padding: t.spacing(0.5, 2, 0, 2),
padding: t.spacing(1, 0, 0, 2),
},
actions: {
opacity: 0.5,
opacity: 0.7,
'$messageContainer:hover &': {
opacity: 1,
},
Expand Down Expand Up @@ -122,7 +122,7 @@ function MessageContainer({
const useMessageActionStyles = M.makeStyles({
action: {
cursor: 'pointer',
opacity: 0.5,
opacity: 0.7,
'&:hover': {
opacity: 1,
},
Expand Down

0 comments on commit 7aa0264

Please sign in to comment.