Skip to content

Commit ccb5cea

Browse files
committed
rm unnecesaary padding that is causing scroll
1 parent a8e32bd commit ccb5cea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • shesha-reactjs/src/components/readOnlyDisplayFormItem

shesha-reactjs/src/components/readOnlyDisplayFormItem/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export const ReadOnlyDisplayFormItem: FC<IReadOnlyDisplayFormItemProps> = (props
101101
return dropdownDisplayMode === 'raw'
102102
? <InputField style={style} value={values?.join(', ')} />
103103
: (
104-
<div style={{ padding: '0px 4px', ...style, display: 'flex', flexWrap: 'wrap', alignItems: 'center', gap: 8, justifyContent: style?.textAlign }}>
104+
<div style={{ ...style, display: 'flex', flexWrap: 'wrap', alignItems: 'center', gap: 8, justifyContent: style?.textAlign }}>
105105
{value?.map(({ label, color, icon, value, description }) => {
106106
return (
107107
<ReflistTag

0 commit comments

Comments
 (0)