I have this html using bootstrap 4 utilities to pull the buttons to the right of the screen. And it does do this.
However, the buttons do not push down the content below it as expected. They end up overlayed on top of the content below.
If I do not use pull-xs-right
then the buttons are left aligned, but they do push the items below.
Is there some other class I need to apply?
<div class="pull-xs-right">
<button click.delegate="saveEdit()"
type="submit"
class="k-button k-primary">
Save
</button>
<button click.delegate="cancel()"
class="k-button">
Cancel
</button>
</div>