sqwish icon indicating copy to clipboard operation
sqwish copied to clipboard

--strict and font-face optimizations

Open rstacruz opened this issue 13 years ago • 1 comments

Looks like --strict doesn't support multiple font faces.

@font-face { font-family: 'Exo'; src: url(exo.ttf); }
@font-face { font-family: 'Exo'; src: url(exo.ttf); }
@font-face { font-family: 'Oswald'; src: url(oswald.ttf); }

Expected output:

@font-face{font-family:Exo;src:url(exo.ttf)}@font-face{font-family:Oswald;src:url(oswald.ttf)}

Actual output (v0.2.0):

@font-face{font-family:Oswald;src:url(oswald.ttf)}

rstacruz avatar Jul 18 '12 23:07 rstacruz

there are general bugs overall when introducing @'s that need to be resolved.

ded avatar Jul 19 '12 19:07 ded