Is there a way to remove the border radius from the card-header in bootstrap 4? I tried using the code below, but the background color of the card-header is still overlapping, giving the appearance of border-radius:
.card-header {
height: 50px;
background-color: #000;
border-top: none;
border-bottom-color: #fff;
border-radius: 0;
}