[Vuejs]-Vue-carousel can't remove outline color

0👍

You’re targeting the wrong CSS selector

.VueCarousel-navigation-button:focus {
    outline: none !important;
}

This removed the outline for me

Leave a comment