diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 07b4e28..9cf16b9 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -67,8 +67,8 @@ onMounted(async () => { // Create the gradient background style const backgroundStyle = computed(() => { - const primary = selectedGame?.value?.color_scheme?.primary ?? "#4d97f8"; - const secondary = selectedGame?.value?.color_scheme?.secondary ?? "#100a7d"; + const primary = selectedGame?.value?.colorScheme?.primary ?? "#4d97f8"; + const secondary = selectedGame?.value?.colorScheme?.secondary ?? "#100a7d"; const backgroundImage = `linear-gradient(135deg, ${primary}, ${secondary})`; // const backgroundImage = !!bgImage ? `url(${bgImage})` : `linear-gradient(135deg, ${primary}, ${secondary})`; diff --git a/frontend/src/components/GameCard.vue b/frontend/src/components/GameCard.vue index ba81e77..9cfe232 100644 --- a/frontend/src/components/GameCard.vue +++ b/frontend/src/components/GameCard.vue @@ -7,7 +7,7 @@ ]" >
- +

{{ game.title }}

@@ -18,7 +18,7 @@
@@ -56,8 +56,8 @@