I have the following warning from stylelint plugin: kaliber/parent-child-policy.
missing `display: flex;`
`order` can only be used when the containing root rule has `display: flex;` - add `display: flex;` to the containing root rule or, if this is caused by a media query that overrides `display: flex;`, use `flex: unset`
I believe flex: unset unsets the flex property, not the order property. We'll want to change this to:
order can only be used when the containing root rule has display: flex; - add display: flex; to the containing root rule or, if this is caused by a media query that overrides display: flex;, use order: unset
I have the following warning from stylelint plugin: kaliber/parent-child-policy.
I believe
flex: unset
unsets theflex
property, not theorder
property. We'll want to change this to:order
can only be used when the containing root rule hasdisplay: flex;
- adddisplay: flex;
to the containing root rule or, if this is caused by a media query that overridesdisplay: flex;
, useorder: unset