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; } }