Skip to content

Commit 99b28ca

Browse files
updated font
1 parent 7b58314 commit 99b28ca

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

src/features/deviceInteraction/CurrentWorkflowExecutionDisplay.jsx/CurrentWorkflowExecutionDisplay.jsx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -904,10 +904,8 @@ export default function CurrentWorkflowExecutionDisplay() {
904904
}
905905
}
906906

907-
// Use monospace font for countdowns, regular font for elapsed time
908-
return isCountdown
909-
? "digital-mono, monospace"
910-
: "inherit";
907+
// Use monospace font for all timer displays
908+
return "digital-mono, monospace";
911909
})(),
912910
fontSize: (() => {
913911
// Use local elapsed time for smooth display
@@ -947,8 +945,8 @@ export default function CurrentWorkflowExecutionDisplay() {
947945
}
948946
}
949947

950-
// Use larger font for countdowns
951-
return isCountdown ? "1.4rem" : "inherit";
948+
// Use same font size for all timer displays
949+
return "1.4rem";
952950
})(),
953951
}}
954952
>

0 commit comments

Comments
 (0)