matype / stylefmt

stylefmt is a tool that automatically formats stylesheets.
Other
2.1k stars 89 forks source link

Spaces are added inside font-family strings #134

Closed hejmartin closed 8 years ago

hejmartin commented 8 years ago

When running the following code through stylefmt@3.2.1, with default settings, using PostCSS, spaces gets added around the dash inside the font-family string.

Input:

@font-face {
    font-family: "HelveticaNeueW02-45Ligh";
}

Output:

@font-face {
    font-family: "HelveticaNeueW02 - 45Ligh";
}