I have the following layout:
http://codepen.io/anon/pen/jWJQXW/
<div class="container" id="dashboardContainer">
<div class="row">
<div class="col-md-4 col-sm-6 margin-bottom-30">
<a href="" class="lg img-wheel" id="">
Col 1-1
</a>
</div>
<div class="col-md-4 col-sm-6 margin-bottom-30">
<a href="" class="lg img-calendar" id="viewFutureBookings">
Col 1-2
</a>
</div>
<div class="col-md-4 col-sm-12">
<div class="row">
<div class="col-sm-6 col-md-12 margin-bottom-30">
<a href="#" class="sm img-compass" id="">
Col 2-1
</a>
</div>
<div class="col-sm-6 col-md-12">
<a href="#" class="sm img-present" id="referAFriend">
Col 2-2
</a>
</div>
</div>
</div>
</div>
</div>
which works great when you are viewing in md and lg. but the problem is when you go into the sm layout it will lay itself out correctly, but not allow you to click on the first row of buttons.
The solution for that I've found is to remove the nested row, but then it breaks my layout because the margins/paddings are out.
What is the recommended solution for this sort of issue?