Formate code.

This commit is contained in:
Bryan Mauger 2025-01-21 14:16:05 -05:00
parent e92fa4b119
commit 9edfa4163a
2 changed files with 10 additions and 9 deletions

View file

@ -96,7 +96,8 @@ const routes = [
// if entering the funnel from the content site, check and see if there is already a funnel cookie. // if entering the funnel from the content site, check and see if there is already a funnel cookie.
// if so, send them to return-user page. // if so, send them to return-user page.
const funnelCookieLastTouched = getFunnelCookie()?.LastTouched; const funnelCookieLastTouched = getFunnelCookie()?.LastTouched;
if (fromContentSite && if (
fromContentSite &&
funnelCookieLastTouched !== null && funnelCookieLastTouched !== null &&
funnelCookieLastTouched !== undefined && funnelCookieLastTouched !== undefined &&
!toReturnUserPage !toReturnUserPage

View file

@ -231,8 +231,8 @@ export default {
z-index: 2; z-index: 2;
&:hover { &:hover {
background-color: $white; background-color: $white;
border-top-left-radius: .5rem; border-top-left-radius: 0.5rem;
border-bottom-left-radius: .5rem; border-bottom-left-radius: 0.5rem;
border-top-right-radius: 0; border-top-right-radius: 0;
border-bottom-right-radius: 0; border-bottom-right-radius: 0;
} }
@ -267,8 +267,8 @@ export default {
z-index: 2; z-index: 2;
&:hover { &:hover {
background-color: $white; background-color: $white;
border-top-right-radius: .5rem; border-top-right-radius: 0.5rem;
border-bottom-right-radius: .5rem; border-bottom-right-radius: 0.5rem;
border-top-left-radius: 0; border-top-left-radius: 0;
border-bottom-left-radius: 0; border-bottom-left-radius: 0;
} }
@ -289,8 +289,8 @@ fieldset {
z-index: 6; z-index: 6;
&:hover { &:hover {
background-color: $white; background-color: $white;
border-top-left-radius: .5rem; border-top-left-radius: 0.5rem;
border-bottom-left-radius: .5rem; border-bottom-left-radius: 0.5rem;
border-top-right-radius: 0; border-top-right-radius: 0;
border-bottom-right-radius: 0; border-bottom-right-radius: 0;
} }
@ -325,8 +325,8 @@ fieldset {
z-index: 6; z-index: 6;
&:hover { &:hover {
background-color: $white; background-color: $white;
border-top-right-radius: .5rem; border-top-right-radius: 0.5rem;
border-bottom-right-radius: .5rem; border-bottom-right-radius: 0.5rem;
border-top-left-radius: 0; border-top-left-radius: 0;
border-bottom-left-radius: 0; border-bottom-left-radius: 0;
} }