I need help creating a carousel with two navigation arrows in Bootstrap 4.
Below is the code for the carousel controls:
<!-- Carousel controls -->
<a class="carousel-control left carousel-control-prev" href="#myCarousel" data-slide="prev">
<i class="fa fa-angle-left text-dark"></i>
</a>
<a class="carousel-control right carousel-control-next" href="#myCarousel" data-slide="next">
<i class="fa fa-angle-right text-dark"></i>
</a>
I have used Font Awesome to display the arrows, but I find them too small by default.
How can I increase the size of these two arrows?