Skip to content

Commit 32fcd38

Browse files
committed
fix(_root.scss): add custom properties - breakpoint-* and mobile-breakpoint
1 parent acab8bc commit 32fcd38

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

scss/_root.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@
88
--#{$variable-prefix}#{$color}: #{$value};
99
}
1010

11+
// breakpoints custom properties
12+
@each $bp, $value in $grid-breakpoints {
13+
--#{$variable-prefix}breakpoint-#{$bp}: #{$value};
14+
}
15+
16+
// mobile breakpoint custom property
17+
--#{$variable-prefix}mobile-breakpoint: #{$mobile-breakpoint};
18+
1119
// Use `inspect` for lists so that quoted items keep the quotes.
1220
// See https://github.com/sass/sass/issues/2383#issuecomment-336349172
1321
--#{$variable-prefix}font-sans-serif: #{inspect($font-family-sans-serif)};

0 commit comments

Comments
 (0)