Skip to content

Commit

Permalink
fix: display for empty chat image (#2575)
Browse files Browse the repository at this point in the history
  • Loading branch information
KaustubhKumar05 authored Feb 21, 2024
1 parent 19450a7 commit ca61b6d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const EmptyChat = () => {
>
<Box>
<Box css={{ m: '0 auto', mt: '$4', '@media (max-height: 575px)': { display: 'none' } }}>
<img src={emptyChat} alt="Empty Chat" height={132} width={185} />
<img src={emptyChat} style={{ display: 'inline' }} alt="Empty Chat" height={132} width={185} />
</Box>

<Text variant="h5" css={{ mt: '$8', c: '$on_surface_high' }}>
Expand Down

0 comments on commit ca61b6d

Please sign in to comment.