I am having an issue with the width of my footer when using a Bootstrap 4 "Container". The Container does not cover the entire bottom of the screen as expected. Even changing it to Container-Fluid does not resolve the issue.
For reference, here is a JSFiddle link: https://jsfiddle.net/1Zero3Tech/6p1rg3ub/3/
<div class="container">
<footer class="footer">
<div class="row">
<div class="col-6 text-left">
Some Text On The Left
</div>
<div class=" col-6 text-right">
Some Text On The Right
</div>
</div>
</footer>
</div>
.footer {
position: absolute;
bottom: 0;
height: 60px;
line-height: 60px;
font-weight: 600;
background-color: yellow;
}