fix: Text widget's background truncation (#22597)
Text widget's background color was not getting applied to the entire widget's bounding box
This commit is contained in:
parent
23664ce584
commit
bca695533a
|
|
@ -145,6 +145,9 @@ export const StyledText = styled(Text)<StyledTextProps>`
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
text-align: ${(props) => props.textAlign.toLowerCase()};
|
text-align: ${(props) => props.textAlign.toLowerCase()};
|
||||||
}
|
}
|
||||||
|
.auto-layout & span {
|
||||||
|
min-height: 32px;
|
||||||
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const ModalContent = styled.div<{
|
const ModalContent = styled.div<{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user