Is there a way to align a button to the left using bootswatch/Litera, which is a bootstrap 4 beta theme?
I attempted to use the float-left class on the button and place it inside a div, but the outcome remained the same.
https://i.sstatic.net/qs4zU.png
I placed the button in the modal footer.
<div class="modal-footer">
<div class="float-left">
<button type="button" class="btn btn-outline-primary btn-circle float-left">
<i class="fa fa-plus"></i>
</button>
</div>
<button type="button" class="btn btn-primary">Save</button>
</div>