TURNIERE-206: Improve logo code alignment

This commit is contained in:
Daniel Schädler 2022-07-01 22:10:26 +02:00
parent 4930887ce1
commit 57c9e895ad
Signed by: Malaber
GPG Key ID: 4BB175A9617E4B11
1 changed files with 5 additions and 1 deletions

View File

@ -13,7 +13,11 @@ import {Group} from '../js/components/GroupStage';
function FullscreenPage(props) { function FullscreenPage(props) {
let logo; let logo;
if (props.showLogo) { if (props.showLogo) {
logo = <Col><img height='300' width='300' src='/static/images/bpwstr_logo.png'></img></Col>; logo = <Col>
<div className="d-flex justify-content-center align-items-center">
<img height='350' width='350' src='/static/images/bpwstr_logo.png'></img>
</div>
</Col>;
} else { } else {
logo = <div />; logo = <div />;
} }