I am using grid in semantic ui react and you are able to see in picture name and mob have padding i want to decrease these padding between them
Code:
import React from 'react'
import { Grid, Image } from 'semantic-ui-react'
const GridExampleRows = () => (
<Grid columns={2}>
<Grid.Row>
<Grid.Column>
<span>Name</span>
</Grid.Column>
<Grid.Column>
<span>: Arman</span>
</Grid.Column>
</Grid.Row>
<Grid.Row>
<Grid.Column>
<span>Mob</span>
</Grid.Column>
<Grid.Column>
<span>: 0987654321</span>
</Grid.Column>
</Grid.Row>
</Grid>
)
export default GridExampleRows

Perhaps try define inline styles with reduced padding, and apply to
Grid.Row.It seems that
Imageis also included asimportbut not used in posted example, so the styles value would possibly need to be further adjusted to be also fitting forImage.Quick basic example: stackblitz