Hey @alex-design, that might just be the focus state of your arrow/buttons.
Try removing the outline using this CSS and see if it works:
<style>
.your-arrow-class:focus {
outline: none;
}
</style>
(change .your-arrow-class
to the class name you have for your custom slider arrows)