Merge pull request #469 from Safelite/CSR-571-alert-spacing
CSR-571 fix spacing for multi-vehicle alert. Required adjustment to v…
This commit is contained in:
commit
5530556b59
4 changed files with 6 additions and 10 deletions
|
|
@ -19,7 +19,7 @@
|
|||
:validationRules="validationRules"
|
||||
/>
|
||||
<div v-show="errorMessage" class="row my-2 form-test-error">
|
||||
<span class="d-inline-flex mt-2" role="alert">{{ errorMessage }}</span>
|
||||
<span class="d-inline-flex mt-0" role="alert">{{ errorMessage }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
<funnelHeader cmsWidgetName="FunnelHeaderWidget" />
|
||||
<vehicleBanner cmsWidgetName="VehicleBannerWidget" :displayGenericVehicleImage="false" />
|
||||
<funnelSubHeader cmsWidgetName="FunnelSubHeaderWidget" />
|
||||
<alert
|
||||
<alert
|
||||
ref="alertFoundMultipleVehicles"
|
||||
class="my-5"
|
||||
alertClass="alert-warning"
|
||||
|
|
@ -20,13 +20,13 @@
|
|||
/>
|
||||
<addressVehiclesQuestion
|
||||
ref="addressVehiclesQuestion"
|
||||
cmsWidgetName="VehicleConfirmationQuestion"
|
||||
cmsWidgetName="VehicleConfirmationQuestion"
|
||||
:vehicles="VehiclesForQuestions"
|
||||
validationRules="vehicle-required"
|
||||
v-model="selectedVehicleVin"
|
||||
:isCarIdDifferent="isCarIdDifferent"
|
||||
/>
|
||||
<div class="alert-provide-vin my-5" v-if="splitAlertProvideVinBodyForLink.length">
|
||||
<div class="alert-provide-vin my-3" v-if="splitAlertProvideVinBodyForLink.length">
|
||||
<span v-for="copy in splitAlertProvideVinBodyForLink" :key="copy">
|
||||
<span v-if="copy.includes('routerLink:')" class="text-body">
|
||||
<router-link :to="{query: {fmgPage: `${copy.split(':')[1].split(',')[0]}`}, name: 'root'}">{{ copy.split(':')[1].split(',')[1] }}</router-link>
|
||||
|
|
@ -240,4 +240,4 @@ export default {
|
|||
line-height: inherit;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div class="vin-information mt-2">
|
||||
<div class="vin-information">
|
||||
<div class="vin-toggle d-inline-flex" :class="[isActive ? 'active' : '']" @click="toggleClass()">
|
||||
<textLink :text="HeadlineText" linkType="text" href="#!" />
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -125,10 +125,6 @@ html {
|
|||
color: $red;
|
||||
font-size: .875rem;
|
||||
font-weight: 500;
|
||||
height: 1.5rem;
|
||||
margin-top: .25rem !important;
|
||||
display: initial;
|
||||
padding-top: .5rem;
|
||||
}
|
||||
|
||||
.form-test-invalid {
|
||||
|
|
|
|||
Loading…
Reference in a new issue