I have two Bootstrap buttons below:
<div class="row">
<div class="col-sm-6 col-xs-6 col-xxs-12">
<button class="btn editReport">Edit Report</button>
</div>
<div class="col-sm-6 col-xs-6 col-xxs-12">
<button class="btn pull-right submitReport">Submit Report</button>
</div>
</div>
"Edit Report" button is on the left of the page, and "Submit Report" button is on the right side of the page. It works fine on normal desktop view, but there is an issue with mobile view.
Running into issues like below:
and
Google around but didn't help. How can I make these two buttons stay on the top and below each other, and align to the middle on mobile view?
Thanks.