Skip to content

Instantly share code, notes, and snippets.

@robinchew
Created April 18, 2016 16:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robinchew/07606136c5e0a72fae75839f13b138e5 to your computer and use it in GitHub Desktop.
Save robinchew/07606136c5e0a72fae75839f13b138e5 to your computer and use it in GitHub Desktop.
Never share a class between 2 styles:
```
.form{
width: auto;
}
.side.form{
width: 100%;
}
```
Do instead
```
.form{
width: auto;
}
.side-form{
width: 100%;
}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment