Timer always where it should be
This commit is contained in:
parent
e7a3abe5fd
commit
93b430594c
|
|
@ -26,13 +26,18 @@ export class TurniereNavigation extends React.Component {
|
||||||
<Navbar color="light" light expand="lg" sticky="top">
|
<Navbar color="light" light expand="lg" sticky="top">
|
||||||
<NavbarBrand className={'hide-below-260-w'} href="/">turnie.re</NavbarBrand>
|
<NavbarBrand className={'hide-below-260-w'} href="/">turnie.re</NavbarBrand>
|
||||||
{tournament && tournament.timerEnd &&
|
{tournament && tournament.timerEnd &&
|
||||||
<NavbarText className="m-auto">
|
<NavbarText className="m-auto hide-above-992-w">
|
||||||
<span className={'hide-below-340-w'}>Spielzeit: </span><Timer timerEnd={tournament.timerEnd} />
|
<span className={'hide-below-340-w'}>Spielzeit: </span><Timer timerEnd={tournament.timerEnd} />
|
||||||
</NavbarText>
|
</NavbarText>
|
||||||
}
|
}
|
||||||
<NavbarToggler onClick={this.toggle}/>
|
<NavbarToggler onClick={this.toggle}/>
|
||||||
<Collapse isOpen={!this.state.collapsed} navbar>
|
<Collapse isOpen={!this.state.collapsed} navbar>
|
||||||
<NavLinks/>
|
<NavLinks/>
|
||||||
|
{tournament && tournament.timerEnd &&
|
||||||
|
<NavbarText className="m-auto hide-below-992-w">
|
||||||
|
<span className={'hide-below-340-w'}>Spielzeit: </span><Timer timerEnd={tournament.timerEnd} />
|
||||||
|
</NavbarText>
|
||||||
|
}
|
||||||
<div className="ms-auto">
|
<div className="ms-auto">
|
||||||
<LoginLogoutButtons/>
|
<LoginLogoutButtons/>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -107,3 +107,15 @@
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 991.98px) {
|
||||||
|
.hide-below-992-w {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 992px) {
|
||||||
|
.hide-above-992-w {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue