Fix CSS style guide state class naming convention to be camel case.

This commit is contained in:
CJ Cenizal 2016-10-27 11:54:40 -07:00
parent 1befc57384
commit bc1b49b88e

View file

@ -196,7 +196,7 @@ Notice that all states contain a boolean keyword, typically "is".
/**
* 1. This button can appear in a "pressed" aka "pinned" state.
*/
&.localNavButton-is-pressed {
&.localNavButton-isPressed {
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2); /* 1 */
}
}