@if map-has-key($breakpoints, small) {
$small-up: screen;
- $small-only: screen and #{breakpoint(small only)};
+ $small-only: unquote('screen and #{breakpoint(small only)}');
}
@if map-has-key($breakpoints, medium) {
- $medium-up: screen and #{breakpoint(medium)};
- $medium-only: screen and #{breakpoint(medium only)};
+ $medium-up: unquote('screen and #{breakpoint(medium)}');
+ $medium-only: unquote('screen and #{breakpoint(medium only)}');
}
@if map-has-key($breakpoints, large) {
- $large-up: screen and #{breakpoint(large)};
- $large-only: screen and #{breakpoint(large only)};
+ $large-up: unquote('screen and #{breakpoint(large)}');
+ $large-only: unquote('screen and #{breakpoint(large only)}');
}
@if map-has-key($breakpoints, xlarge) {
- $xlarge-up: screen and #{breakpoint(xlarge)};
- $xlarge-only: screen and #{breakpoint(xlarge only)};
+ $xlarge-up: unquote('screen and #{breakpoint(xlarge)}');
+ $xlarge-only: unquote('screen and #{breakpoint(xlarge only)}');
}
@if map-has-key($breakpoints, xxlarge) {
- $xxlarge-up: screen and #{breakpoint(xxlarge)};
+ $xxlarge-up: unquote('screen and #{breakpoint(xxlarge)}');
}