2023-01-11 11:26:08 +03:00

26 lines
378 B
JavaScript

const threshold = 0;
const screens = {
tablet: 768,
laptop: 1024,
'laptop-hd': 1280,
desktop: 1680,
'desktop-xl': 1921,
};
const devices = Object.values(screens);
const breakpoints = Object.values(screens).map((value) => `${value + threshold}px`);
const theme = {
breakpoints,
};
module.exports = {
threshold,
screens,
devices,
breakpoints,
theme,
};