Skip to content

Commit

Permalink
fix: Filter names overflow wrap (apache#25087)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-s-molina authored Aug 28, 2023
1 parent c8704d6 commit b56066a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const VerticalFilterControlTitle = styled.h4`
font-size: ${({ theme }) => theme.typography.sizes.s}px;
color: ${({ theme }) => theme.colors.grayscale.dark1};
margin: 0;
overflow-wrap: break-word;
overflow-wrap: anywhere;
`;

const HorizontalFilterControlTitle = styled(VerticalFilterControlTitle)`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,4 +96,5 @@ export const TooltipTrigger = styled.div`
export const InternalRow = styled.div`
display: flex;
align-items: center;
overflow: hidden;
`;

0 comments on commit b56066a

Please sign in to comment.