I am trying to create a Bootstrap 4 jumbotron with two columns, where the second column appears first on small screens. Below is my code snippet, but it's not working as expected. Can anyone spot what I'm doing wrong?
<div class="jumbotron">
<div class="container">
<div class="row">
<div class="col-md-8 order-xs-2">
<h1>Welcome</h1>
<p class="lead">This is my site</p>
<p><a class="btn btn-primary btn-lg" href="{% url 'login' %}" role="button">Login »</a></p>
</div>
<div class="col-md-4 order-xs-1">
This should be the first column on small screens
</div>
</div>
</div>
</div>