Skip to content

Instantly share code, notes, and snippets.

@jaredphillips
Last active August 29, 2015 14:05
Show Gist options
  • Save jaredphillips/d1a4532488b85aa9a2c4 to your computer and use it in GitHub Desktop.
Save jaredphillips/d1a4532488b85aa9a2c4 to your computer and use it in GitHub Desktop.
SASS Example 4
/* style.scss */
/* This scss will create a style.css when run through a pre-processor */
@import "normalize.min";
@import "my-defaults";
@import "icons";
@import "mobile";
@import "small-tablet";
@import "tablet";
@import "full-size";
/*
* each of these imports is a specific CSS/SASS
* stylesheet imported into style.css
* _normalize.min.css
* _my_defaults.scss
* _icons.scss
* etc
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment