fix: fixed overflowing text on record show page (#3372)

This commit is contained in:
Sagar Jariwala
2024-01-11 22:38:31 +05:30
committed by GitHub
parent 6bae6fcdce
commit 4b97625f37
2 changed files with 2 additions and 0 deletions

View File

@ -36,6 +36,7 @@ const StyledLabelAndIconContainer = styled.div`
const StyledValueContainer = styled.div`
display: flex;
overflow: hidden;
`;
const StyledLabel = styled.div<

View File

@ -9,6 +9,7 @@ const StyledPropertyBoxContainer = styled.div`
flex-direction: column;
gap: ${({ theme }) => theme.spacing(2)};
padding: ${({ theme }) => theme.spacing(3)};
overflow: hidden;
`;
interface PropertyBoxProps {