From 93b430594c8a0536c699e45fab605adefb72f5f3 Mon Sep 17 00:00:00 2001 From: Malaber Date: Wed, 19 Mar 2025 21:59:05 +0100 Subject: [PATCH] Timer always where it should be --- js/components/Navigation.js | 7 ++++++- public/static/css/tournament.css | 12 ++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) 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; + } +}