I've encountered a rather perplexing issue with bootstrap that seems to have little information available online.
My problem lies in the fact that my col-sm-6 classes are being overridden by the following code snippet:
.row>* {
flex-shrink: 0;
width: 100%;
max-width: 100%;
padding-right: calc(var(--bs-gutter-x) * .5);
padding-left: calc(var(--bs-gutter-x) * .5);
margin-top: var(--bs-gutter-y);
}
This is the nested structure of the columns:
<div class="col-md-8 col-sm-12">
<div class="row">
<div class="col-lg-4 col-md-6 col-sm-6 col-griditem display-flex"></div>
</div>
</div>
Interestingly, it appears that the column class vanishes completely in the inspector and does not actually get overridden. Can anyone shed some light on this issue?
Sample HTML Code Goes Here