aboutsummaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
Diffstat (limited to 'components')
-rw-r--r--components/Button.vue1
-rw-r--r--components/Input.vue1
2 files changed, 2 insertions, 0 deletions
diff --git a/components/Button.vue b/components/Button.vue
index 2bffcec..00cc1e7 100644
--- a/components/Button.vue
+++ b/components/Button.vue
@@ -45,6 +45,7 @@ button {
border-radius: 0.375rem;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
font-size: var(--text-small);
+ font-family: var(--font-family);
font-weight: 500;
color: white;
background-color: var(--color-primary);
diff --git a/components/Input.vue b/components/Input.vue
index 4d95700..8923a97 100644
--- a/components/Input.vue
+++ b/components/Input.vue
@@ -79,6 +79,7 @@ input {
border-radius: 0.375rem;
box-sizing: border-box;
/* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); */
+ font-family: var(--font-family);
color: var(--color-text);
font-size: var(--text-small);
}