From e7629cf50cf7c08d48986a1c3f4b4a3174287463 Mon Sep 17 00:00:00 2001 From: Mikael Finstad Date: Thu, 13 Mar 2025 20:55:19 +0900 Subject: [PATCH] fix bug --- src/renderer/src/components/ExportConfirm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/src/components/ExportConfirm.tsx b/src/renderer/src/components/ExportConfirm.tsx index d46acbfa..7cd1ab41 100644 --- a/src/renderer/src/components/ExportConfirm.tsx +++ b/src/renderer/src/components/ExportConfirm.tsx @@ -34,7 +34,7 @@ const outDirStyle: CSSProperties = { ...highlightedTextStyle, wordBreak: 'break- const warningStyle: CSSProperties = { color: 'var(--orange8)', fontSize: '80%', marginBottom: '.5em' }; -const infoStyle: CSSProperties = { color: 'white', fontSize: '80%', marginBottom: '.5em' }; +const infoStyle: CSSProperties = { color: 'var(--grey12)', fontSize: '80%', marginBottom: '.5em' }; const adjustCutFromValues = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; const adjustCutToValues = [-10, -9, -8, -7, -6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10];