diff --git a/bo/components.d.ts b/bo/components.d.ts index d6733d5..c325a92 100644 --- a/bo/components.d.ts +++ b/bo/components.d.ts @@ -17,6 +17,7 @@ declare module 'vue' { En_TermsAndConditionsView: typeof import('./src/components/terms/en_TermsAndConditionsView.vue')['default'] LangSwitch: typeof import('./src/components/inner/langSwitch.vue')['default'] PageAddresses: typeof import('./src/components/customer/PageAddresses.vue')['default'] + PageCart: typeof import('./src/components/customer/PageCart.vue')['default'] PageProductCardFull: typeof import('./src/components/customer/PageProductCardFull.vue')['default'] Pl_PrivacyPolicyView: typeof import('./src/components/terms/pl_PrivacyPolicyView.vue')['default'] Pl_TermsAndConditionsView: typeof import('./src/components/terms/pl_TermsAndConditionsView.vue')['default'] diff --git a/bo/src/app.config.ts b/bo/src/app.config.ts index 6bcbbf3..0089c78 100644 --- a/bo/src/app.config.ts +++ b/bo/src/app.config.ts @@ -2,10 +2,6 @@ import type { NuxtUIOptions } from '@nuxt/ui/unplugin' export const uiOptions: NuxtUIOptions = { ui: { - colors: { - primary: 'blue', - neutral: 'zink', - }, pagination: { slots: { root: '', @@ -56,6 +52,12 @@ export const uiOptions: NuxtUIOptions = { tr: 'border-b! border-(--border-light)! dark:border-(--border-dark)! outline-0! ring-0! text-(--black)! dark:text-white!', } + }, + modal: { + slots: { + content: 'border! border-(--border-light)! dark:border-(--border-dark)! outline-0! ring-0! bg-(--second-light) dark:bg-(--main-dark)', + } + } } } \ No newline at end of file diff --git a/bo/src/components/TopBar.vue b/bo/src/components/TopBar.vue index 10917ba..856bf7d 100644 --- a/bo/src/components/TopBar.vue +++ b/bo/src/components/TopBar.vue @@ -9,7 +9,7 @@ const authStore = useAuthStore()