From f590175cfcbf1684c14a942355f919cb8e4198ff Mon Sep 17 00:00:00 2001 From: Mathieu Date: Sat, 2 Mar 2019 23:18:25 +0000 Subject: [PATCH] fix: prototype spacing breakpoint specificity issue --- scss/prototype/_spacing.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scss/prototype/_spacing.scss b/scss/prototype/_spacing.scss index 6ba17d33f..9f7a44559 100644 --- a/scss/prototype/_spacing.scss +++ b/scss/prototype/_spacing.scss @@ -138,8 +138,10 @@ $prototype-spacers-count: 3 !default; } } } + } - @if ($prototype-spacing-breakpoints) { + @if ($prototype-spacing-breakpoints) { + @for $spacer from 0 through $prototype-spacers-count { // Loop through Responsive Breakpoints @each $size in $breakpoint-classes { @include breakpoint($size) { -- 2.47.3