You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
597 B
19 lines
597 B
"use strict"; |
|
Object.defineProperty(exports, "__esModule", { |
|
value: true |
|
}); |
|
exports.default = buildMediaQuery; |
|
function buildMediaQuery(screens) { |
|
screens = Array.isArray(screens) ? screens : [ |
|
screens |
|
]; |
|
return screens.map((screen1)=>screen1.values.map((screen)=>{ |
|
if (screen.raw !== undefined) { |
|
return screen.raw; |
|
} |
|
return [ |
|
screen.min && `(min-width: ${screen.min})`, |
|
screen.max && `(max-width: ${screen.max})`, |
|
].filter(Boolean).join(" and "); |
|
})).join(", "); |
|
}
|
|
|