Skip to content

Commit

Permalink
Merge pull request #10370 from zurb/brettsmason-fix-grid-base-classes
Browse files Browse the repository at this point in the history
Fix missing `.` with class names with xy grid
  • Loading branch information
kball authored Jul 21, 2017
2 parents fe0d099 + 1cfebae commit 6031a3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scss/xy-grid/_classes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@
// https://github.com/zurb/foundation-sites/pull/10222 and
// https://github.com/zurb/foundation-sites/pull/10164
.grid-x {
$str: "> #{$-zf-size}-shrink, > #{$-zf-size}-full";
$str: "> .#{$-zf-size}-shrink, > .#{$-zf-size}-full";
@for $i from 1 through $grid-columns {
$str: $str + ", > #{$-zf-size}-#{$i}"
$str: $str + ", > .#{$-zf-size}-#{$i}"
}
#{$str} {
flex-basis: auto;
Expand Down

0 comments on commit 6031a3d

Please sign in to comment.