[ui] fix font resolve indication

feat/vaults
Tomáš Mládek 2021-12-01 15:43:32 +01:00
parent 067eeeb543
commit 2648349468
2 changed files with 3 additions and 4 deletions

View File

@ -39,6 +39,8 @@
html { html {
--default-font: "Inter", sans-serif; --default-font: "Inter", sans-serif;
--monospace-font: "Fira Code", "Consolas", "JetBrains Mono", "Inconsolata",
monospace;
--foreground: #2c3e50; --foreground: #2c3e50;
--background: white; --background: white;
@ -80,9 +82,6 @@
justify-content: space-between; justify-content: space-between;
margin: 1rem 0; margin: 1rem 0;
--monospace-font: "Fira Code", "Consolas", "JetBrains Mono", "Inconsolata",
monospace;
} }
#main { #main {

View File

@ -243,7 +243,7 @@
max-width: 1em; max-width: 1em;
} }
.formatted { &.formatted {
font-family: var(--default-font); font-family: var(--default-font);
} }
} }