Skip to content

Commit

Permalink
Do not use breaking lines
Browse files Browse the repository at this point in the history
  • Loading branch information
oandregal committed Nov 12, 2020
1 parent b591b11 commit 36d582d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export default ( blockData, tree ) => {
const value = preset[ key ];
const classSelectorToUse = `.has-${ slug }-${ classSuffix }`;
const selectorToUse = `${ blockSelector }${ classSelectorToUse }`;
declarations += `${ selectorToUse } {${ property }: ${ value };}\n`;
declarations += `${ selectorToUse } {${ property }: ${ value };}`;
} );
return declarations;
},
Expand Down

0 comments on commit 36d582d

Please sign in to comment.