I need a full-width column that remains the same width and does not stack on small devices using Bootstrap 4. Here is my code snippet:
<div class="container-fluid">
<div class="row">
<div class="col-sm-12">
<h1>Welcome back User!</h1>
</div>
</div>
</div>
However, upon inspection, I noticed a slight overflow issue on small devices. How can I resolve this problem?