diff --git a/client/src/assets/css/components.scss b/client/src/assets/css/components.scss index 23fe892..5350819 100644 --- a/client/src/assets/css/components.scss +++ b/client/src/assets/css/components.scss @@ -1,4 +1,4 @@ @import './colors.scss'; -$primary-font: 'Wendy One'; -$secondary-font: 'Dosis'; +$font-primary: 'Wendy One'; +$font-secondary: 'Dosis'; diff --git a/client/src/components/Button.vue b/client/src/components/Button.vue index ec4fb82..699b0fc 100644 --- a/client/src/components/Button.vue +++ b/client/src/components/Button.vue @@ -31,7 +31,7 @@ defineProps({ background-color: inherit; color: $text-secondary-color; text-align: center; - font-family: $secondary-font; + font-family: $font-secondary; font-weight: bold; font-size: 24px; border: none; diff --git a/client/src/components/LoginBox.vue b/client/src/components/LoginBox.vue index 64512d2..f1e2b32 100644 --- a/client/src/components/LoginBox.vue +++ b/client/src/components/LoginBox.vue @@ -52,7 +52,7 @@ const login = (): void => { border: none; border-bottom: $box-primary-border; color: $text-primary-color; - font-family: $secondary-font; + font-family: font-secondary; font-weight: 800; font-size: 24px; outline: none; diff --git a/client/src/components/TitleBox.vue b/client/src/components/TitleBox.vue index 3999a9b..0ff5738 100644 --- a/client/src/components/TitleBox.vue +++ b/client/src/components/TitleBox.vue @@ -56,7 +56,7 @@ &__title { font-size: 64px; - font-family: $primary-font; + font-family: $font-primary; color: $box-primary-text-color; text-align: center; } diff --git a/client/src/components/TopBar.vue b/client/src/components/TopBar.vue index c9bf7cc..6ded3bc 100644 --- a/client/src/components/TopBar.vue +++ b/client/src/components/TopBar.vue @@ -5,7 +5,7 @@