I have a component that has the ability to hold any number of elements.
My goal is to have the elements stack on top of each other and take up the full width of the container when the screen is small, but revert to the default Bootstrap column behavior on larger screens.
Here is an example of what I am trying to achieve:
<div class="row">
<div class="col-sm-12 col">/div>
<div class="col-sm-12 col">/div>
<div class="col-sm-12 col">/div>
.
.
.
</div>
</div>