Explicit media query
import Layout from 'atomic-layout'
export const CustomComponent = styled.div`
color: #000;
@media (min-width: ${Layout.breakpoints.md.minWidth}) {
color: #ffbbcc;
}
`Last updated
import Layout from 'atomic-layout'
export const CustomComponent = styled.div`
color: #000;
@media (min-width: ${Layout.breakpoints.md.minWidth}) {
color: #ffbbcc;
}
`Last updated