This is an automated email from the ASF dual-hosted git repository. lyndsi pushed a commit to branch lyndsi/fix-timer-font in repository https://gitbox.apache.org/repos/asf/superset.git
commit 6523c4b61ae4196c08f87e90daf203118c3c9f94 Author: lyndsiWilliams <[email protected]> AuthorDate: Tue Oct 18 21:49:20 2022 -0500 Changed timer font to monospace --- superset-frontend/src/components/Timer/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/superset-frontend/src/components/Timer/index.tsx b/superset-frontend/src/components/Timer/index.tsx index cfffc28571..ce9bac55e9 100644 --- a/superset-frontend/src/components/Timer/index.tsx +++ b/superset-frontend/src/components/Timer/index.tsx @@ -31,6 +31,7 @@ export interface TimerProps { const TimerLabel = styled(Label)` text-align: left; + font-family: ${({ theme }) => theme.typography.families.monospace}; `; export default function Timer({
