Skip to content

Instantly share code, notes, and snippets.

@sicktastic
Last active August 4, 2016 21:16
Show Gist options
  • Save sicktastic/30044c4d1d59890496da19ccee81b3b3 to your computer and use it in GitHub Desktop.
Save sicktastic/30044c4d1d59890496da19ccee81b3b3 to your computer and use it in GitHub Desktop.
Structure this way, so we have a standard.
```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 {
}
```
@sicktastic
Copy link
Author

We can start to fix all our SCSS files this way. Since we cleaned up alot of SCSS during bootstrap 4 update.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment