diff --git a/js/components/Navigation.js b/js/components/Navigation.js index 7a85b95..e6cd07f 100644 --- a/js/components/Navigation.js +++ b/js/components/Navigation.js @@ -26,13 +26,18 @@ export class TurniereNavigation extends React.Component { turnie.re {tournament && tournament.timerEnd && - + Spielzeit: } + {tournament && tournament.timerEnd && + + Spielzeit: + + }
diff --git a/public/static/css/tournament.css b/public/static/css/tournament.css index 7428667..611367e 100644 --- a/public/static/css/tournament.css +++ b/public/static/css/tournament.css @@ -107,3 +107,15 @@ display: none; } } + +@media (max-width: 991.98px) { + .hide-below-992-w { + display: none; + } +} + +@media (min-width: 992px) { + .hide-above-992-w { + display: none; + } +}