Skip to content

Commit

Permalink
Fix overflow on notes (#5853)
Browse files Browse the repository at this point in the history
  • Loading branch information
martmull authored Jun 14, 2024
1 parent be18ee4 commit eaa2f83
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ const StyledLabelAndIconContainer = styled.div`

const StyledValueContainer = styled.div`
display: flex;
min-width: 100%;
flex-grow: 1;
min-width: 0;
`;

const StyledLabelContainer = styled.div<{ width?: number }>`
Expand Down

0 comments on commit eaa2f83

Please sign in to comment.