diff --git a/client/package.json b/client/package.json index 847f59d4f..598783b03 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "ontime-ui", - "version": "1.9.1", + "version": "1.9.2", "private": true, "dependencies": { "@chakra-ui/react": "^2.3.2", diff --git a/client/src/features/viewers/minimal-timer/MinimalTimer.tsx b/client/src/features/viewers/minimal-timer/MinimalTimer.tsx index 10c29f223..6c2d059c0 100644 --- a/client/src/features/viewers/minimal-timer/MinimalTimer.tsx +++ b/client/src/features/viewers/minimal-timer/MinimalTimer.tsx @@ -141,7 +141,6 @@ export default function MinimalTimer(props: MinimalTimerProps) { className={showFinished ? `${baseClasses} minimal-timer--finished` : baseClasses} style={{ backgroundColor: userOptions.keyColour, - color: userOptions.textColour, justifyContent: userOptions.justifyContent, alignItems: userOptions.alignItems, }} @@ -160,6 +159,7 @@ export default function MinimalTimer(props: MinimalTimerProps) { showFinished ? 'timer--finished' : '' }`} style={{ + color: userOptions.textColour, fontSize: `${(89 / (clean.length - 1)) * (userOptions.size || 1)}vw`, fontFamily: userOptions.font, top: userOptions.top, diff --git a/server/package.json b/server/package.json index e30061354..05f3a6866 100644 --- a/server/package.json +++ b/server/package.json @@ -1,6 +1,6 @@ { "name": "ontime", - "version": "1.9.1", + "version": "1.9.2", "author": "Carlos Valente", "description": "Time keeping for live events", "repository": "https://github.com/cpvalente/ontime",