Skip to content

Commit

Permalink
Merge pull request #213 from DavitBakhutashvili/fix/change-text-color
Browse files Browse the repository at this point in the history
fix: change color in TypeWriter component
  • Loading branch information
Chkhikvadze authored Oct 6, 2023
2 parents d6d62f9 + 3f13b2d commit 4d86b54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/ui/src/components/ChatTypingEffect/Typewriter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default memo(Typewriter)

const StyledTypewriterWrapper = styled.div<{ size: string }>`
width: 100%;
color: #fff;
color: ${({ theme }) => theme.body.textColorPrimary};
${p =>
p.size === 'small' &&
Expand Down

0 comments on commit 4d86b54

Please sign in to comment.