@netdata/netdata-ui
Version:
netdata UI kit
22 lines (21 loc) • 700 B
JavaScript
exports.__esModule = true;
exports.devices = exports.breakpoints = void 0;
var devices = exports.devices = {
mobileSmall: "320px",
mobile: "425px",
tablet: "768px",
laptop: "1024px",
laptopLarge: "1200px",
desktop: "1440px",
desktopLarge: "2560px"
};
var breakpoints = exports.breakpoints = {
mobileSmall: "(min-width: " + devices.mobileSmall + ")",
mobile: "(min-width: " + devices.mobile + ")",
tablet: "(min-width: " + devices.tablet + ")",
laptop: "(min-width: " + devices.laptop + ")",
laptopLarge: "(min-width: " + devices.laptopLarge + ")",
desktop: "(min-width: " + devices.desktop + ")",
desktopLarge: "(min-width: " + devices.desktopLarge + ")"
};
;