diff --git a/ui/src/App.svelte b/ui/src/App.svelte index 09cb464..e64d9b4 100644 --- a/ui/src/App.svelte +++ b/ui/src/App.svelte @@ -39,6 +39,8 @@ html { --default-font: "Inter", sans-serif; + --monospace-font: "Fira Code", "Consolas", "JetBrains Mono", "Inconsolata", + monospace; --foreground: #2c3e50; --background: white; @@ -80,9 +82,6 @@ justify-content: space-between; margin: 1rem 0; - - --monospace-font: "Fira Code", "Consolas", "JetBrains Mono", "Inconsolata", - monospace; } #main { diff --git a/ui/src/components/widgets/Table.svelte b/ui/src/components/widgets/Table.svelte index 30834fd..1f4633b 100644 --- a/ui/src/components/widgets/Table.svelte +++ b/ui/src/components/widgets/Table.svelte @@ -243,7 +243,7 @@ max-width: 1em; } - .formatted { + &.formatted { font-family: var(--default-font); } }