Fix Nested Selector Hashing
Fixed
- Fix nested selectors returning the same hash when no other styles are present
- E.g.
{ color: 'red' }
and{ '&:first-child': { color: 'red' } }
should return different hashes, otherwise it'll create some nasty edge cases for the class name getting set to{ color: 'red' }
unexpectedly
- E.g.