properties
changelog

@screen Mixin

Use @screen mixin for responsive breakpoints and media queries.

Usage:

.any-class {
	/* direct */
	@screen <variant> { ... }
}

Important Note

Reference

shilp.config.js
const shilpConfig = {
	target: "react",

	mixins: {
		screen: {
			resolve: () => {
				/* see: /docs/responsive-design#working-with-breakpoints */
			},
		},
	},
};

export default shilpConfig;