Skip to content

Commit 6a45d1a

Browse files
committed
Merge pull request #10370 from zurb/brettsmason-fix-grid-base-classes
Fix missing `.` with class names with xy grid
1 parent 0baab0d commit 6a45d1a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scss/xy-grid/_classes.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@
5353
// https://github.com/zurb/foundation-sites/pull/10222 and
5454
// https://github.com/zurb/foundation-sites/pull/10164
5555
.grid-x {
56-
$str: "> #{$-zf-size}-shrink, > #{$-zf-size}-full";
56+
$str: "> .#{$-zf-size}-shrink, > .#{$-zf-size}-full";
5757
@for $i from 1 through $grid-columns {
58-
$str: $str + ", > #{$-zf-size}-#{$i}"
58+
$str: $str + ", > .#{$-zf-size}-#{$i}"
5959
}
6060
#{$str} {
6161
flex-basis: auto;

0 commit comments

Comments
 (0)