Hi everyone,
I have a button, which I dont want to have any borders at all.
So I did:
.v-button.style {
border:none;
outline:none;
}
v-button.style:focus {
border:none;
outline:none;
}
v-button.style:active {
border:none;
outline:none;
}
And this works for both the normal and focus states. Although when I press the button (and hold to observe), the active state has a blue border, and fades my color slightly. Any ideas about how to fix?