Last active
August 4, 2016 21:16
-
-
Save sicktastic/30044c4d1d59890496da19ccee81b3b3 to your computer and use it in GitHub Desktop.
Structure this way, so we have a standard.
This file contains hidden or 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
| ```scss | |
| // Media Queries, iPhone Portrait, iPhone Landscape, iPad Portrait... | |
| @media (max-width: 480px) { | |
| // Mixins | |
| // CSS Elements | |
| // ID | |
| // Class | |
| } | |
| // Mixins | |
| @include mixins-of-certain-thing("helloworld"); | |
| // CSS elements | |
| background { | |
| } | |
| // ID Elements | |
| #something-used-once { | |
| } | |
| //Class Elements | |
| .something-used-over-and-over { | |
| } | |
| ``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We can start to fix all our SCSS files this way. Since we cleaned up alot of SCSS during bootstrap 4 update.