Skip to content

Commit

Permalink
fix(skeleton loading in dark mode appears like light mode in chat): s…
Browse files Browse the repository at this point in the history
…keleton dark mode

fix #1308
  • Loading branch information
corlard3y committed May 23, 2024
1 parent c90e3de commit 6a19039
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -415,5 +415,5 @@ const ChatViewListCard = styled(Section)<IThemeProps>`
`;

const ChatViewListCardInner = styled(Section)<IThemeProps>`
filter: ${(props) => (props.blur ? 'blur(12px)' : 'none')};
filter: ${(props) => (props.blur ? 'blur(6px)' : 'none')};
`;

0 comments on commit 6a19039

Please sign in to comment.