Skip to content

Instantly share code, notes, and snippets.

@darrenkopp
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save darrenkopp/90fc356ec69f1830ff4f to your computer and use it in GitHub Desktop.
Save darrenkopp/90fc356ec69f1830ff4f to your computer and use it in GitHub Desktop.
How To Use SassyStudio
// this is a partial file. when you save this file, no .css file will be created for it as it's intent is only to be
// @include'd in other files.
//
// SassyStudio will, however, recognize that this file is included in root.scss, so when this file is saved, it will re-generate
// root.css for you.
.account {
.page-title {
font-size: 1.5em;
}
}
// here we have a root sass file. anytime you save this file, SassyStudio will emit a single file named root.css
body {
font-size: 1em
}
// here we reference our partials. we are using the shorthand syntax which does not require you to specify the _ prefix
// for partials, or the .scss file extension
@include "account";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment