TURNIERE-206: Improve wasted space
This commit is contained in:
parent
407cc5a596
commit
e91c519560
|
|
@ -78,9 +78,9 @@ function GroupScoresTable(props) {
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Team</th>
|
<th>Team</th>
|
||||||
<th>Punkte</th>
|
<th>Pkt.</th>
|
||||||
<th>Becher geworfen</th>
|
<th>Gew.</th>
|
||||||
<th>Becher kassiert</th>
|
<th>Kas.</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|
|
||||||
|
|
@ -15,14 +15,13 @@ function FullscreenPage(props) {
|
||||||
if (props.showLogo) {
|
if (props.showLogo) {
|
||||||
logo = <Col>
|
logo = <Col>
|
||||||
<div className="d-flex justify-content-center align-items-center">
|
<div className="d-flex justify-content-center align-items-center">
|
||||||
<img height='350' width='350' src='/static/images/bpwstr_logo.png'></img>
|
<img height='300' width='300' src='/static/images/bpwstr_logo.png'></img>
|
||||||
</div>
|
</div>
|
||||||
</Col>;
|
</Col>;
|
||||||
} else {
|
} else {
|
||||||
logo = <div />;
|
logo = <div />;
|
||||||
}
|
}
|
||||||
return (<div>
|
return (<div>
|
||||||
<FullscreenPageHeader title={props.tournament.name} page={props.page + 1} maxPage={props.maxPage + 1}/>
|
|
||||||
<Container className='fs-5' fluid>
|
<Container className='fs-5' fluid>
|
||||||
<Row className='row-cols-4'>
|
<Row className='row-cols-4'>
|
||||||
{props.groups.map(group => <Col className='mb-2'><Group group={group} key={group.id}/></Col>)}
|
{props.groups.map(group => <Col className='mb-2'><Group group={group} key={group.id}/></Col>)}
|
||||||
|
|
@ -31,7 +30,7 @@ function FullscreenPage(props) {
|
||||||
<QRCodeSVG
|
<QRCodeSVG
|
||||||
className='shadow mx-auto'
|
className='shadow mx-auto'
|
||||||
value='https://qr.bpwstr.de/2'
|
value='https://qr.bpwstr.de/2'
|
||||||
size="350"
|
size="300"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</Col>
|
</Col>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue