stop prepending CSS with spaces (fixes #140)

pull/7738/head
Conduitry 10 years ago
parent c4df8e08da
commit e72d28102a

@ -1,6 +1,5 @@
import spaces from '../../utils/spaces.js';
import transform from './transform.js';
export default function process ( parsed ) {
return transform( spaces( parsed.css.content.start ) + parsed.css.content.styles, parsed.hash );
return transform( parsed.css.content.styles, parsed.hash );
}

Loading…
Cancel
Save