Created
January 22, 2020 03:41
-
-
Save sno2/b37edc4b1ee76affc372a6d52733849b to your computer and use it in GitHub Desktop.
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
/* 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