Created
September 18, 2015 13:14
-
-
Save webarthur/93e06d6fc11a95e7b5ed to your computer and use it in GitHub Desktop.
How to use SASS / SCSS + PHP
This file contains 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
# install ruby and gem | |
sudo apt-get install ruby gem | |
# install sass / scss | |
sudo gem install sass | |
# compile sass scripts | |
sass --watch scss/style.sass:css/style.css | |
# or compile scss scripts | |
sass --watch scss/style.scss:css/style.css |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment