Trying to implement sticky-top
from bootstrap to fix a div when scrolling. Implementing as follows:
<div class="col-md-4">
<div class="sticky-top">
<app-reserva></app-reserva>
</div>
</div>
Various sources suggest adding the following:
.sticky-top { top: 0.5em; }
Despite trying this, the issue still persists. What am I overlooking?