Offset that only applies in a linear layout.
Example
I have extra bottom spacing on extra small screens (xs).
I have extra bottom spacing on small screens (sm).
I have big bottom spacing on extra small screens (xs).
I have big bottom spacing on small screens (sm).
I have HUGE bottom spacing on extra small screens (xs).
I have HUGE bottom spacing on small screens (sm).
<div class="offset-bottom-xs-max">I have extra bottom spacing on extra small screens (xs).</div>
<div class="offset-bottom-sm-max">I have extra bottom spacing on small screens (sm).</div>
<div class="offset-bottom-large-xs-max">I have big bottom spacing on extra small screens (xs).</div>
<div class="offset-bottom-large-sm-max">I have big bottom spacing on small screens (sm).</div>
<div class="offset-bottom-larger-xs-max">I have HUGE bottom spacing on extra small screens (xs).</div>
<div class="offset-bottom-larger-sm-max">I have HUGE bottom spacing on small screens (sm).</div>