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:
parent
ea1d49775c
commit
a2a5439741
|
|
@ -120,6 +120,7 @@ const Row = styled.p`
|
|||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: flex-start;
|
||||
white-space: nowrap;
|
||||
`;
|
||||
|
||||
// Constants
|
||||
|
|
|
|||
|
|
@ -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`
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user