This repository has been archived on 2025-05-09. You can view files and clone it, but cannot push or open issues or pull requests.
2020-09-07 20:27:56 +03:00

18 lines
282 B
JavaScript

import { screens } from './mq';
const ALLOWED_BREAKPOINTS = [
//'less'
'tablet',
'desktop',
'desktop1280',
'desktop1440',
'desktop1920',
'desktop2560',
];
export default {
breakpoints: ALLOWED_BREAKPOINTS.map(
breakpoint => screens[breakpoint] + 'px',
),
};