Currently, I am working on developing an Angular application and utilizing Bootstrap columns to easily format and space my page. However, I am facing an issue where there seems to be some unwanted margin around the element even though I have applied col-lg-12. Shouldn't this fill the entire width of the page?
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<div class="header">Turtle</div>
</div>
</div>
</div>
https://stackblitz.com/edit/angular-vrpc9a?file=src%2Fapp%2Fheader%2Fheader.component.html
At this point, the application is very basic, but I am somewhat puzzled as to why this issue is occurring.