From 692f1f51d0aa77733a30aec268201683d6e16855 Mon Sep 17 00:00:00 2001 From: William Grant Date: Fri, 7 Jun 2024 12:26:06 +1000 Subject: [PATCH] fix: updated deblug log to use new font variable --- ts/components/DebugLogView.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ts/components/DebugLogView.tsx b/ts/components/DebugLogView.tsx index 082976317..930414d59 100644 --- a/ts/components/DebugLogView.tsx +++ b/ts/components/DebugLogView.tsx @@ -42,8 +42,9 @@ const StyledContent = styled.div` resize: none; min-height: 100px; - font-family: Monaco, Consolas, 'Courier New', Courier, monospace; + font-family: var(--font-debug); font-size: 12px; + line-height: 18px; } `;