Created
May 7, 2015 20:29
-
-
Save marcysutton/55a04d0ea18feff3084b to your computer and use it in GitHub Desktop.
Angular Material CSS Best Practice
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
// Brittle: | |
md-dialog { | |
&> md-dialog-content { | |
} | |
} | |
// better: | |
md-dialog { | |
.custom-dialog-content { | |
} | |
} | |
// Best: | |
.custom-dialog { | |
.custom-dialog-content { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment