I'm new in Vue.js and i have problem with validations. I'm using Vee-Validate framework for validations. Validation is working, but i got this red circle icon from 'is-danger' class. Question: How to set only this red border, but without this little icon? Look at the screenshot below:
<ValidationProvider
:rules="{
required: true,
digitsRegex: /^(0|[1-9][0-9]{0,2}(?:(,[0-9]{3})*|[0-9]*))(\.[0-9]+){0,1}$/
}"
v-slot="{ errors, valid }"
name="Discount"
>
<b-field
:type="{ 'is-danger': errors[0], 'is-primary': valid }"
>
<b-input
v-model="discount"
step="any"
type="text"
:min="0"
:max="sumWithoutDiscount"
/>
</b-field>
<span
v-for="error in errors"
:key="error.id"
class="has-text-danger help"
>{{ error }}</span
>
</ValidationProvider>

is-dangerclass and use another class that only has the styles you need? - ravi kumar