@screen Mixin
Use @screen mixin for responsive breakpoints and media queries.
Usage:
.any-class { /* direct */ @screen <variant> { ... } }
Important Note
Reference
shilp.config.jsconst shilpConfig = { target: "react", mixins: { screen: { resolve: () => { /* see: /docs/responsive-design#working-with-breakpoints */ }, }, }, }; export default shilpConfig;