I'm trying to customize the color of my checkboxes. I followed the documentation and I came up with a way to change the background:
.custom-control-input:checked ~ .custom-control-indicator {
background-color: #ffa500;
}
If you click the checkbox there is also a blue border with (I think) a padding around the box itself, but even with some research, I'm unable to find how to change the color of that border too. Anyone can help me? I made a fiddle to demonstrate what I have.
Anyone know how to change that border?
Thanks in advance!