fix: issue with css override (#224)

This commit is contained in:
Carlos Valente
2022-10-17 15:40:37 +02:00
committed by GitHub
parent 2215319cd1
commit 4a83f2554d
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "ontime-ui",
"version": "1.9.1",
"version": "1.9.2",
"private": true,
"dependencies": {
"@chakra-ui/react": "^2.3.2",
@@ -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,
+1 -1
View File
@@ -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",