mirror of https://github.com/sveltejs/svelte
Merge pull request #205 from Conduitry/gh-140
stop prepending CSS with spaces (fixes #140)pull/206/head
commit
27d34cf345
@ -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…
Reference in new issue