fix: Filter names overflow wrap (#25087)

This commit is contained in:
Michael S. Molina 2023-08-28 11:28:16 -03:00 committed by GitHub
parent 4c4fedc452
commit b5bac6c876
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -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)`

View File

@ -96,4 +96,5 @@ export const TooltipTrigger = styled.div`
export const InternalRow = styled.div`
display: flex;
align-items: center;
overflow: hidden;
`;