I'm facing some difficulties in removing all the default styling of Bootstrap 4 from the .card
component. It seems like this issue might not be directly related to Bootstrap since I am also experiencing it in Edge browser.
Could someone please assist me in getting rid of the blue line that appears on a selected .card-header?
https://i.sstatic.net/mLRHH.png
I have already attempted different overrides, such as:
.card-header {
background-color: white;
border-color: orange;
border: 1px solid orange;
padding: 0;
padding-bottom: 5px;
text-decoration: none;
}
Your help will be greatly appreciated!