@netdata/netdata-ui
Version:
netdata UI kit
18 lines • 584 B
JavaScript
export var devices = {
mobileSmall: "320px",
mobile: "425px",
tablet: "768px",
laptop: "1024px",
laptopLarge: "1200px",
desktop: "1440px",
desktopLarge: "2560px"
};
export var 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 + ")"
};