Creates a media query for a range of viewport sizes.
Generates a media query that applies styles only when the viewport width
falls between the minimum and maximum breakpoints (inclusive).
Parameters
min: number
The minimum breakpoint in pixels
max: number
The maximum breakpoint in pixels
styles: Record<string,any> = {}
The CSS-in-JS styles object to apply within this range
Returns Record<string,any>
A media query object with the specified range constraint
Creates a media query for a range of viewport sizes. Generates a media query that applies styles only when the viewport width falls between the minimum and maximum breakpoints (inclusive).