mirror of
https://github.com/apache/superset.git
synced 2026-06-01 21:59:26 +00:00
fix: Filter names overflow wrap (#25087)
This commit is contained in:
committed by
GitHub
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;
|
||||
`;
|
||||
|
||||
Reference in New Issue
Block a user