After reviewing the documentation for Bootstrap React, I noticed that the API includes border color options, but there was limited information on customizing the size (width) of the border. I attempted to modify the border width using custom CSS by adding the 'Bootstrap-Card' className to the Card component, but my efforts were unsuccessful:
//index.scss
.Bootstrap-Card {
border-width: 10px;
border-color: red;
}
//index.js
<Card className="Bootstrap-Card" style={{ width: '50rem' }}> ...
If anyone has any insights or solutions on how to customize the border size, it would be greatly appreciated. Thank you!