vcc-ui
Version:
VCC UI is a collection of React UI Components that can be used for developing front-end applications at Volvo Car Corporation.
18 lines (17 loc) • 549 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.BREAKPOINTS = void 0;
var small = 426;
var medium = 1024;
var BREAKPOINTS = {
onS: "@media (max-width: ".concat(small - 1, "px)"),
onM: "@media (min-width: ".concat(small, "px) and (max-width: ").concat(medium - 1, "px)"),
onL: "@media (min-width: ".concat(medium, "px)"),
untilL: "@media (max-width: ".concat(medium - 1, "px)"),
fromM: "@media (min-width: ".concat(small, "px)"),
small: small,
medium: medium
};
exports.BREAKPOINTS = BREAKPOINTS;