fix: text overflow gen CRUD form (#7180)

Fix #7151 : Text overflows the row when the table's column name is more than 25 characters.
This commit is contained in:
Rishabh Rathod 2021-09-07 18:41:27 +05:30 committed by GitHub
parent ea1d49775c
commit a2a5439741
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -120,6 +120,7 @@ const Row = styled.p`
display: flex;
flex-direction: row;
justify-content: flex-start;
white-space: nowrap;
`;
// Constants

View File

@ -10,7 +10,8 @@ export const SelectWrapper = styled.div<{ width: string }>`
export const Label = styled.p`
flex: 1;
${(props) => `${getTypographyByKey(props, "p1")}`}
${(props) => `${getTypographyByKey(props, "p1")}`};
white-space: nowrap;
`;
export const Bold = styled.span`