diff --git a/components/CookieUsageNotification.vue b/components/CookieUsageNotification.vue index b949f4b..5257071 100644 --- a/components/CookieUsageNotification.vue +++ b/components/CookieUsageNotification.vue @@ -28,6 +28,7 @@ export default { mounted() { const auth = useAuthStore(); + console.log("auth.cookiesAccepted", auth.cookiesAccepted); if (auth.cookiesAccepted === true) { this.show = false; } else { diff --git a/components/ProductCardDetails.vue b/components/ProductCardDetails.vue index 4378287..4e13f98 100644 --- a/components/ProductCardDetails.vue +++ b/components/ProductCardDetails.vue @@ -485,7 +485,7 @@ export default { h4 { font-size: $h4; font-weight: $medium; - color: $color-navy; + color: black; margin-top: 5px; text-transform: uppercase; text-decoration: none; diff --git a/nuxt.config.ts b/nuxt.config.ts index 5b9d92d..4109ea2 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -20,6 +20,9 @@ export default defineNuxtConfig({ }) } ], + pinia: { + storesDirs: ['./stores/**'], + }, css: [ '~/assets/scss/main.scss', 'bootstrap/dist/css/bootstrap.min.css', diff --git a/pages/admin/cooperativas.vue b/pages/admin/cooperativas.vue index 3c15dd1..d0ea16b 100644 --- a/pages/admin/cooperativas.vue +++ b/pages/admin/cooperativas.vue @@ -152,7 +152,6 @@ export default {