Skip to content

Commit

Permalink
🐛 Adds text wrapping for long words in the title
Browse files Browse the repository at this point in the history
This fixes issue #657
  • Loading branch information
wandersonsales-dev committed Mar 16, 2024
1 parent a2e93d5 commit 155a976
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/renderer/src/styles/routes/tasks/tasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ export const StyledTaskHeading = styled.h3`
font-weight: 500;
text-transform: uppercase;
color: var(--color-heading-text);
overflow: hidden;
overflow-wrap: break-word;
`;

export const StyledTaskHeadeInput = styled(StyledInput)`
Expand Down

0 comments on commit 155a976

Please sign in to comment.