This repository was archived by the owner on May 14, 2021. It is now read-only.

Description
The following two components defined in the same file results in an error:
Components
const Layout = styled(HSpreadLayout)`
> *:first-child {
padding: 1.25rem;
}
`
const NavList = styled(HList)`
> * + * {
border-left: 1px solid #bbb;
}
`
Error
Expected selector ".selector6 > * + *" to come before selector ".selector5 > *:first-child" no-descending-specificity
Expected
Each component should be evaluated separately.
- Node 8.11.3
- "stylelint": "^9.5.0",
- "stylelint-config-recommended": "^2.1.0",
- "stylelint-config-styled-components": "^0.1.1",
- "stylelint-processor-styled-components": "^1.3.2"