Workaround for weird padding around rows on mobile
This commit is contained in:
parent
f34b1507eb
commit
be3884af01
|
|
@ -22,7 +22,7 @@ export default class GroupStage extends Component {
|
||||||
<span className='px-2'>Gruppenphase</span>
|
<span className='px-2'>Gruppenphase</span>
|
||||||
<ShowMatchesToggleButton show={this.state.showMatches} toggle={this.toggleShowMatches}/>
|
<ShowMatchesToggleButton show={this.state.showMatches} toggle={this.toggleShowMatches}/>
|
||||||
</h1>
|
</h1>
|
||||||
<Row className='mt-3'>
|
<Row className='mt-3 gx-0'>
|
||||||
{this.props.groups.map(group => <Group group={group} key={group.id} isSignedIn={this.props.isSignedIn}
|
{this.props.groups.map(group => <Group group={group} key={group.id} isSignedIn={this.props.isSignedIn}
|
||||||
isOwner={this.props.isOwner} showMatches={this.state.showMatches}/>)}
|
isOwner={this.props.isOwner} showMatches={this.state.showMatches}/>)}
|
||||||
</Row>
|
</Row>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue