So I have a row within a row to allow me to position 3 buttons spaced out how I like at the bottom of a page. It looks fine on desktop and tablet but on mobile it stacks them and the col-xs-4 div is full width instead of being 1/3 its container. Is there something I can change so that the circle's are not stacked?
Relevant code:
<div class="row buttonBottom">
<div class="col-md-4 col-xs-2 col-sm-2"></div>
<div class="col-md-4 col-xs-8 col-sm-8">
<div class="row">
<div class="col-xs-3 col-sm-3 col-md-3"></div>
<div class="col-xs-2 col-sm-2 col-md-2">
<div class="wrap-circle">
<div class="circle jetblack"></div>
</div>
</div>
<div class="col-xs-2 col-sm-2 col-md-2">
<div class="wrap-circle">
<div class="circle gold"></div>
</div>
</div>
<div class="col-xs-2 col-sm-2 col-md-2">
<div class="wrap-circle">
<div class="circle white"></div>
</div>
</div>
<div class="col-xs-3 col-sm-3 col-md-3"></div>
</div>
</div>
<div class="col-md-4 col-xs-2 col-sm-2"></div>
</div>