Skip to content

Instantly share code, notes, and snippets.

@sno2
Created January 22, 2020 03:41
Show Gist options
  • Save sno2/b37edc4b1ee76affc372a6d52733849b to your computer and use it in GitHub Desktop.
Save sno2/b37edc4b1ee76affc372a6d52733849b to your computer and use it in GitHub Desktop.
/* Sass Code */
@import 'style_reset'; /* File Path must be relative | the style_reset.scss file is in the variables folder */
html {
background: #fff; /* $blue was pulled in from the file above */
}
/* Compiled CSS Code */
html, body, ul, ol { /* The style_reset.scss file contents */
margin: 0;
padding: 0;
}
html { /* Previously stated code */
background: #fff;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment