Skip to content

Commit

Permalink
fix: make lightHeader and lightFooter cssVars available for header an…
Browse files Browse the repository at this point in the history
…d footer
  • Loading branch information
mcstover committed Nov 23, 2021
1 parent ed7918c commit 6f99f93
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/pages/LandingPages/CorporateCampaign/CCLandingPage.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<template>
<www-page-corporate
:corporate-logo-url="corporateLogoUrl"
:header-theme="lightHeader"
:footer-theme="lightFooter"
>
<div class="corporate-campaign-landing">
<kv-loading-overlay
Expand Down Expand Up @@ -230,6 +232,7 @@ import logFormatter from '@/util/logFormatter';
import { processPageContentFlat } from '@/util/contentfulUtils';
import { validateQueryParams, getPromoFromBasket } from '@/util/campaignUtils';
import LoanSearchFilters, { getSearchableFilters } from '@/api/fixtures/LoanSearchFilters';
import { lightHeader, lightFooter } from '@/util/siteThemes';
import syncDate from '@/util/syncDate';
import trackTransactionEvent from '@/util/trackTransactionEvent';
import checkoutUtils from '@/plugins/checkout-utils-mixin';
Expand Down Expand Up @@ -539,7 +542,9 @@ export default {
initialFilters: {},
verificationSumbitted: false,
loadingPage: false,
showVerifyRemovePromoCredit: false
showVerifyRemovePromoCredit: false,
lightHeader,
lightFooter,
};
},
metaInfo() {
Expand Down

0 comments on commit 6f99f93

Please sign in to comment.