diff --git a/ui/src/App.vue b/ui/src/App.vue index ee69140..cc2e75a 100644 --- a/ui/src/App.vue +++ b/ui/src/App.vue @@ -38,14 +38,14 @@ export default defineComponent({ @import url("/assets/fonts/inter.css"); html { - font-family: "Inter", sans-serif; + --default-font: "Inter", sans-serif; --foreground: #2c3e50; --background: white; } @supports (font-variation-settings: normal) { html { - font-family: "Inter var", sans-serif; + --default-font: "Inter var", sans-serif; } } @@ -60,6 +60,8 @@ html, body, #app { height: calc(100% - 1rem); + + font-family: var(--default-font); color: var(--foreground); background: var(--background); } diff --git a/ui/src/components/Address.vue b/ui/src/components/Address.vue index 814ddf2..2eac011 100644 --- a/ui/src/components/Address.vue +++ b/ui/src/components/Address.vue @@ -1,5 +1,5 @@