Last active
November 30, 2018 05:22
-
-
Save adnan360/784fa13c185f27aa36c01074a65c4b78 to your computer and use it in GitHub Desktop.
For generating tabbed Sass output
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sassc -t expanded style.scss > style.css | |
sed -i -e 's/ / /g' style.css | |
# Save as .sh file on the same directory as the css. e.g. generate.sh | |
# chmod +x generate.sh | |
# ./generate.sh | |
# This method requires no tools, no hacks, no code edits etc. Easy and simple! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment