Skip to content

Commit

Permalink
Fix tooltip wrapping
Browse files Browse the repository at this point in the history
Closes #1291
  • Loading branch information
nop33 committed Feb 27, 2025
1 parent 56d5b58 commit a24e657
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/desktop-wallet/src/features/toastMessages/ToastBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const ToastBoxContent = styled(motion.div)`
gap: var(--spacing-2);
font-size: 14px;
color: ${({ theme }) => theme.font.primary};
word-wrap: break-word;
word-break: break-word;
overflow-y: auto;
font-weight: var(--fontWeight-semiBold);
pointer-events: all;
Expand Down Expand Up @@ -126,6 +126,7 @@ const Title = styled.div`
font-weight: var(--fontWeight-semiBold);
max-height: 20vh;
margin-top: var(--spacing-1);
word-break: break-word;
`

const ContentRow = styled.div`
Expand All @@ -142,6 +143,7 @@ const CenterContent = styled.div`
const ChildrenContent = styled.div`
flex: 1;
font-weight: var(--fontWeight-medium);
word-break: break-word;
`

const ButtonStyled = styled(Button)`
Expand Down

0 comments on commit a24e657

Please sign in to comment.