From 709fb26512b1d1fc29229e21d2918ca9c0a69ea5 Mon Sep 17 00:00:00 2001 From: Malaber Date: Wed, 19 Mar 2025 22:13:15 +0100 Subject: [PATCH] Support for Spiel Vorbei! string --- js/components/Navigation.js | 10 +++++----- public/static/css/tournament.css | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/js/components/Navigation.js b/js/components/Navigation.js index 4795fa5..4b6dd4d 100644 --- a/js/components/Navigation.js +++ b/js/components/Navigation.js @@ -8,9 +8,9 @@ import {logout} from '../api'; import {notify} from 'react-notify-toast'; import {Timer} from './Timer'; -const TournamentTimer = ({timerEnd, className}) => ( +const NavbarTimer = ({timerEnd, className}) => ( - Spielzeit: + Spielzeit: ); @@ -30,15 +30,15 @@ export class TurniereNavigation extends React.Component { return ( - turnie.re + turnie.re {tournament && tournament.timerEnd && - + } {tournament && tournament.timerEnd && - + }
diff --git a/public/static/css/tournament.css b/public/static/css/tournament.css index 611367e..726d652 100644 --- a/public/static/css/tournament.css +++ b/public/static/css/tournament.css @@ -96,14 +96,14 @@ text-align: left; } -@media (max-width: 340px) { - .hide-below-340-w { +@media (max-width: 400px) { + .hide-below-400-w { display: none; } } -@media (max-width: 260px) { - .hide-below-260-w { +@media (max-width: 320px) { + .hide-below-320-w { display: none; } }