<a class="button" href="#">So Basic</a>
<a class="large button" href="#">So Large</a>
<a class="expanded button" href="#">Such Expand</a>
-<a class="small expanded button" href="#">Wow, Small Expand</a>
+<a class="small expanded-for-large button" href="#">Wow, Small + Expand for Large</a>
```
---
&.small { font-size: map-get($button-sizes, small); }
&.large { font-size: map-get($button-sizes, large); }
&.expanded { @include button-expand; }
+ @each $size in $breakpoint-classes {
+ @include breakpoint($size) {
+ &.expanded-for-#{$size} {
+ @include button-expand;
+ }
+ }
+ }
// Colors
@each $name, $color in $foundation-colors {