문제

If I have a file called 'structure.scss' and inside this file I have the code

body { margin: 20px; }

and I have another file called 'fonts.scss' with the following code inside

body { color: red; }

and I use codekit to compress I get the following code

body{margin:20px;}body{color:red;}

Is there any way to get the code minified even further or is there an option in codekit to do this to make the code...

body{margin:20px;color:red;}
도움이 되었습니까?

해결책

No, that is not possible in Codekit.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top