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>
|
||||
<div class="vin-location-information">
|
||||
<div class="vin-location-information mt-2">
|
||||
<div
|
||||
class="vin-toggle mt-2"
|
||||
class="vin-toggle"
|
||||
:class="[isVinLocationDetailVisible ? 'active' : '']"
|
||||
@click="handleClickToggle"
|
||||
>
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
v-model="vin"
|
||||
cms-widget-name="VinNumberQuestionWidget"
|
||||
disable-auto-fill
|
||||
id="vin-question-wrapper"
|
||||
input-id="vin-question"
|
||||
is-required
|
||||
max-length="17"
|
||||
|
|
@ -42,3 +43,11 @@ export default {
|
|||
},
|
||||
};
|
||||
</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