Fix: Sync colors for light/dark mode consistency
This commit is contained in:
parent
e7ea035a9e
commit
6239159099
12 changed files with 445 additions and 175 deletions
2
Frontend-Learner/.nuxt/types/components.d.ts
vendored
2
Frontend-Learner/.nuxt/types/components.d.ts
vendored
|
|
@ -15,6 +15,7 @@ type LazyComponent<T> = DefineComponent<HydrationStrategies, {}, {}, {}, {}, {},
|
|||
|
||||
interface _GlobalComponents {
|
||||
'AppHeader': typeof import("../../components/common/AppHeader.vue").default
|
||||
'AppSidebar': typeof import("../../components/common/AppSidebar.vue").default
|
||||
'FormInput': typeof import("../../components/common/FormInput.vue").default
|
||||
'GlobalLoader': typeof import("../../components/common/GlobalLoader.vue").default
|
||||
'LandingFooter': typeof import("../../components/common/LandingFooter.vue").default
|
||||
|
|
@ -172,6 +173,7 @@ interface _GlobalComponents {
|
|||
'Body': typeof import("../../node_modules/nuxt/dist/head/runtime/components").Body
|
||||
'NuxtIsland': typeof import("../../node_modules/nuxt/dist/app/components/nuxt-island").default
|
||||
'LazyAppHeader': LazyComponent<typeof import("../../components/common/AppHeader.vue").default>
|
||||
'LazyAppSidebar': LazyComponent<typeof import("../../components/common/AppSidebar.vue").default>
|
||||
'LazyFormInput': LazyComponent<typeof import("../../components/common/FormInput.vue").default>
|
||||
'LazyGlobalLoader': LazyComponent<typeof import("../../components/common/GlobalLoader.vue").default>
|
||||
'LazyLandingFooter': LazyComponent<typeof import("../../components/common/LandingFooter.vue").default>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue