Workaround for weird padding around rows on mobile

This commit is contained in:
Daniel Schädler 2025-03-17 14:58:45 +01:00
parent f34b1507eb
commit be3884af01
1 changed files with 1 additions and 1 deletions

View File

@ -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>