/// Border box utility
@mixin border-box {
- box-sizing: border-box !important;
+ box-sizing: border-box !important;
}
@mixin foundation-prototype-border-box {
- .border-box {
- @include border-box;
- }
+ .border-box {
+ @include border-box;
+ }
- @if ($prototype-border-box-breakpoints) {
+ @if ($prototype-border-box-breakpoints) {
// Loop through Responsive Breakpoints
@each $size in $breakpoint-classes {
@include breakpoint($size) {
@if $size != $-zf-zero-breakpoint {
.#{$size}-border-box {
- @include border-box;
- }
+ @include border-box;
+ }
}
}
}