fix: Filter names overflow wrap (#25087)
This commit is contained in:
parent
4c4fedc452
commit
b5bac6c876
|
|
@ -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)`
|
||||
|
|
|
|||
|
|
@ -96,4 +96,5 @@ export const TooltipTrigger = styled.div`
|
|||
export const InternalRow = styled.div`
|
||||
display: flex;
|
||||
align-items: center;
|
||||
overflow: hidden;
|
||||
`;
|
||||
|
|
|
|||
Loading…
Reference in New Issue