Multiple QA fixes.

Fixes:
CSR-578, spacing between copy and vin-info toggle
CSR-101, padding incorrect on input
This commit is contained in:
bmauger 2022-05-17 16:18:49 -04:00
parent ea36be7312
commit 9f88939c78
4 changed files with 11 additions and 8 deletions

View file

@ -19,7 +19,7 @@
:validationRules="validationRules"
/>
<div v-show="errorMessage" class="row my-2 form-test-error">
<span role="alert">{{ errorMessage }}</span>
<span class="d-inline-flex mt-2" role="alert">{{ errorMessage }}</span>
</div>
</div>
</template>
@ -159,6 +159,7 @@ export default {
border: 1px solid $gray-500;
border-radius: .5rem;
min-height: 3rem;
padding: 12px 16px;
&::placeholder {
color: $gray-500;
}

View file

@ -1,5 +1,5 @@
<template>
<div class="vin-information">
<div class="vin-information mt-2">
<div class="vin-toggle d-inline-flex" :class="[isActive ? 'active' : '']" @click="toggleClass()">
<textLink :text="HeadlineText" linkType="text" href="#!" />
</div>

View file

@ -14,7 +14,7 @@
/>
<funnelSubHeader cmsWidgetName="FunnelSubHeaderWidget" />
<div class="fade-on-route-transition sub-container make-tall">
<div class="row my-2">
<div class="row mt-2">
<div class="col">
<textboxQuestion
cmsWidgetName="VinNumber"

View file

@ -1,7 +1,7 @@
html {
.has-error {
&.list-button,
&.list-card,
&.list-card,
&.list-card.list-button {
color: $red;
input[type=checkbox]:focus + label,
@ -16,12 +16,12 @@ html {
border-radius: 10px;
}
label {
border: 1px solid $red;
border: 1px solid $red;
}
label:hover {
box-shadow: 0px 0px 0px 4px $red-200;
border-radius: 10px;
border: 1px solid $red;
border: 1px solid $red;
}
}
&.list-button-horizontal {
@ -114,8 +114,10 @@ html {
color: $red;
font-size: .875rem;
font-weight: 500;
height: 1.5rem;
margin-top: .25rem !important;
height: 1.5rem;
margin-top: .25rem !important;
display: initial;
padding-top: .5rem;
}
.form-test-invalid {