Open
Description
Hi so after reading the docs I understand that CSS-in-JS will not be sorted on the root level due to property interpolation. I was wondering if there was any way to override this behavior or have more control here. For example, for my use case, I only use property interpolations when I'm using a mixin. So for example something like this:
export const Container = styled.div`
${myMixin};
padding-left: 2px;
text-align: center;
...
Therefore I would like the sorting to occur but after the interpolated property. Is anything like this possible?
Activity