Is there a way to align the dropdown-toggle to the right in a bootstrap dropdown? My code and a jsfiddle are provided below. The arrow pointing down is currently next to the text, but I would like it on the right side.
Check out this JSFiddle for reference
<div class="dropdown">
<button class="btn dropdown-toggle btn-block text-left" style="background-color: white; border-color:#dee4ed" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Active</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<a class="dropdown-item">Active</a>
<a class="dropdown-item">Inactive</a>
</div>
</div>