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.
20 lines
597 B
20 lines
597 B
2 years ago
|
"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(", ");
|
||
|
}
|