Fix whitespace issue reported by QA
This commit is contained in:
parent
a8dd886012
commit
e24de8bf70
2 changed files with 11 additions and 2 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="vin-location-information">
|
<div class="vin-location-information mt-2">
|
||||||
<div
|
<div
|
||||||
class="vin-toggle mt-2"
|
class="vin-toggle"
|
||||||
:class="[isVinLocationDetailVisible ? 'active' : '']"
|
:class="[isVinLocationDetailVisible ? 'active' : '']"
|
||||||
@click="handleClickToggle"
|
@click="handleClickToggle"
|
||||||
>
|
>
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@
|
||||||
v-model="vin"
|
v-model="vin"
|
||||||
cms-widget-name="VinNumberQuestionWidget"
|
cms-widget-name="VinNumberQuestionWidget"
|
||||||
disable-auto-fill
|
disable-auto-fill
|
||||||
|
id="vin-question-wrapper"
|
||||||
input-id="vin-question"
|
input-id="vin-question"
|
||||||
is-required
|
is-required
|
||||||
max-length="17"
|
max-length="17"
|
||||||
|
|
@ -42,3 +43,11 @@ export default {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
<style>
|
||||||
|
#vin-question-wrapper .form-test-error {
|
||||||
|
/**
|
||||||
|
Override extra margin-bottom in the error message in TextboxQuestion
|
||||||
|
*/
|
||||||
|
margin-bottom: 0 !important;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue