File tree Expand file tree Collapse file tree
src/features/deviceInteraction/CurrentWorkflowExecutionDisplay.jsx Expand file tree Collapse file tree Original file line number Diff line number Diff 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 >
You can’t perform that action at this time.
0 commit comments