Skip to content

Commit

Permalink
fix: issue with css override (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpvalente authored Oct 17, 2022
1 parent 2215319 commit 4a83f25
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ontime-ui",
"version": "1.9.1",
"version": "1.9.2",
"private": true,
"dependencies": {
"@chakra-ui/react": "^2.3.2",
Expand Down
2 changes: 1 addition & 1 deletion client/src/features/viewers/minimal-timer/MinimalTimer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}}
Expand All @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion server/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 4a83f25

Please sign in to comment.