0👍
0👍
Try to use border-color
with transparent value, unset the box-shadow and avoid to use !important
.form-control:focus {
border-color: transparent;
box-shadow: none;
}
This should do the trick
0👍
How about using the no-border prop ?
<b-form-rating ... no-border ...>
doc: https://bootstrap-vue.org/docs/components/form-rating#borderless
- [Vuejs]-How to full state before going throw script in component vue
- [Vuejs]-One array of object pulls data while other doesn't
Source:stackexchange.com