Skip to content

Commit d73a5f5

Browse files
authored
Merge pull request #456 from zahid-aziz/master
🔧 Fixes params splitting issues for other rules
2 parents a47413c + 82d6a7d commit d73a5f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/lost-at-rule.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module.exports = function lostAtRule(rule, settings) {
2-
const breakoutParams = rule.params.split(' ');
3-
42
if (rule.name != 'lost') {
53
return;
64
}
5+
const breakoutParams = rule.params.split(' ');
6+
77
if (breakoutParams[0] === 'gutter') {
88
settings.gutter = breakoutParams[1];
99
}

0 commit comments

Comments
 (0)