formatting code

formatting code
This commit is contained in:
hiteshkumar87 2023-10-04 16:56:30 +05:30
parent b420688c60
commit eecfa64fe9
4 changed files with 49 additions and 47 deletions

View file

@ -60,9 +60,9 @@ beforeEach(() => {
make: "Ford", make: "Ford",
model: "F Series F250", model: "F Series F250",
}, },
customer:{ customer: {
emailAddress:"test@test.com", emailAddress: "test@test.com",
} },
}, },
payment: { payment: {
isInsurance: true, isInsurance: true,

View file

@ -34,7 +34,9 @@
</button> </button>
</div> </div>
</div> </div>
<div class="appoinmenttext" v-html="this.getAppointmentWordingText()"></div> <div
class="appoinmenttext"
v-html="this.getAppointmentWordingText()"></div>
</div> </div>
<div class="emailtext" v-html="this.getConfirmationEmailText()"></div> <div class="emailtext" v-html="this.getConfirmationEmailText()"></div>
<navbar <navbar
@ -306,19 +308,20 @@ export default {
} }
} }
.appoinmenttext strong{color:$black;} .appoinmenttext strong {
color: $black;
}
.emailtext{ .emailtext {
padding:1.5rem 0 0; padding: 1.5rem 0 0;
p{ p {
font-size:0.875rem; font-size: 0.875rem;
margin:0; margin: 0;
strong{ strong {
color:$black; color: $black;
} }
} }
} }
</style> </style>

View file

@ -1,37 +1,35 @@
process.env.VUE_APP_CONSUMER_CF_DISTRO = process.env.VUE_APP_CONSUMER_CF_DISTRO = "https://digitalapi.dev.safelite.io";
"https://digitalapi.dev.safelite.io"; process.env.VUE_APP_HERITAGE_FUNNEL = "http://localhost:38000/default.aspx";
process.env.VUE_APP_HERITAGE_FUNNEL = process.env.VUE_APP_GOOGLE_PLACES_API_KEY = "AIzaSyDptGCkOPgN2uWJOy4ou4M33phRD4MAoJo";
"http://localhost:38000/default.aspx";
process.env.VUE_APP_GOOGLE_PLACES_API_KEY =
"AIzaSyDptGCkOPgN2uWJOy4ou4M33phRD4MAoJo";
process.env.VUE_APP_CURRENT_ENVIRONMENT = "Localhost"; process.env.VUE_APP_CURRENT_ENVIRONMENT = "Localhost";
process.env.VUE_APP_MY_ACCOUNT = "https://myaccountdev.safelite.com/"; process.env.VUE_APP_MY_ACCOUNT = "https://myaccountdev.safelite.com/";
// GA & GTM // GA & GTM
process.env.VUE_APP_GOOGLE_TAG_MANAGER_SCRIPT_BODY = "(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl+ '&gtm_auth=amlAYNhxUxuskQo7jmjadg&gtm_preview=env-38&gtm_cookies_win=x';f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-M6XCRH');"; process.env.VUE_APP_GOOGLE_TAG_MANAGER_SCRIPT_BODY =
"(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl+ '&gtm_auth=amlAYNhxUxuskQo7jmjadg&gtm_preview=env-38&gtm_cookies_win=x';f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-M6XCRH');";
process.env.VUE_APP_GOOGLE_TAG_MANAGER_NOSCRIPT_FRAME_SRC = "https://www.googletagmanager.com/ns.html?id=GTM-M6XCRH&gtm_auth=amlAYNhxUxuskQo7jmjadg&gtm_preview=env-38&gtm_cookies_win=x";
process.env.VUE_APP_GOOGLE_TAG_MANAGER_NOSCRIPT_FRAME_SRC =
"https://www.googletagmanager.com/ns.html?id=GTM-M6XCRH&gtm_auth=amlAYNhxUxuskQo7jmjadg&gtm_preview=env-38&gtm_cookies_win=x";
module.exports = { module.exports = {
outputDir: "dist/fmg", outputDir: "dist/fmg",
publicPath: "/fmg", publicPath: "/fmg",
css: { css: {
loaderOptions: { loaderOptions: {
sass: { sass: {
// Load Order Matters!!! // Load Order Matters!!!
// Note: only include functions, variables and mixins here // Note: only include functions, variables and mixins here
prependData: ` prependData: `
@import "./node_modules/bootstrap/scss/functions"; @import "./node_modules/bootstrap/scss/functions";
@import "@/styles/ux-variables.scss"; @import "@/styles/ux-variables.scss";
@import "./node_modules/bootstrap/scss/variables"; @import "./node_modules/bootstrap/scss/variables";
@import "./node_modules/bootstrap/scss/mixins"; @import "./node_modules/bootstrap/scss/mixins";
@import "@/styles/mixins/customMixins"; @import "@/styles/mixins/customMixins";
`, `,
}, },
},
},
configureWebpack: {
devtool: "source-map",
}, },
},
configureWebpack: {
devtool: 'source-map'
},
}; };

View file

@ -6,24 +6,25 @@ process.env.VUE_APP_MY_ACCOUNT = "__VUE_APP_MY_ACCOUNT__";
// GA & GTM // GA & GTM
process.env.VUE_APP_GOOGLE_TAG_MANAGER_SCRIPT_BODY = "__VUE_APP_GOOGLE_TAG_MANAGER_SCRIPT_BODY__"; process.env.VUE_APP_GOOGLE_TAG_MANAGER_SCRIPT_BODY = "__VUE_APP_GOOGLE_TAG_MANAGER_SCRIPT_BODY__";
process.env.VUE_APP_GOOGLE_TAG_MANAGER_NOSCRIPT_FRAME_SRC = "__VUE_APP_GOOGLE_TAG_MANAGER_NOSCRIPT_FRAME_SRC__" process.env.VUE_APP_GOOGLE_TAG_MANAGER_NOSCRIPT_FRAME_SRC =
"__VUE_APP_GOOGLE_TAG_MANAGER_NOSCRIPT_FRAME_SRC__";
module.exports = { module.exports = {
outputDir: "dist/fmg", outputDir: "dist/fmg",
publicPath: "/fmg", publicPath: "/fmg",
css: { css: {
loaderOptions: { loaderOptions: {
sass: { sass: {
// Load Order Matters!!! // Load Order Matters!!!
// Note: only include functions, variables and mixins here // Note: only include functions, variables and mixins here
prependData: ` prependData: `
@import "./node_modules/bootstrap/scss/functions"; @import "./node_modules/bootstrap/scss/functions";
@import "@/styles/ux-variables.scss"; @import "@/styles/ux-variables.scss";
@import "./node_modules/bootstrap/scss/variables"; @import "./node_modules/bootstrap/scss/variables";
@import "./node_modules/bootstrap/scss/mixins"; @import "./node_modules/bootstrap/scss/mixins";
@import "@/styles/mixins/customMixins"; @import "@/styles/mixins/customMixins";
`, `,
}, },
},
}, },
},
}; };