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:
Aswath K 2023-04-28 11:47:04 +05:30 committed by GitHub
parent 23664ce584
commit bca695533a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -145,6 +145,9 @@ export const StyledText = styled(Text)<StyledTextProps>`
white-space: pre-wrap;
text-align: ${(props) => props.textAlign.toLowerCase()};
}
.auto-layout & span {
min-height: 32px;
}
`;
const ModalContent = styled.div<{