I have a container with a padding of 5 (p-5) applied to it. However, I am looking for a way to automatically remove the padding when the screen size is small, without adding more CSS rules. Is there a solution using only bootstrap classes?
<div class="container-fluid text-center p-5">
<div class="row">
<div class="col-sm-4 d-none d-sm-none d-md-none d-lg-block">
<accordion />
</div>
</div>
</div>