@inkline/inkline
Version:
Inkline is the Vue.js UI/UX Library built for creating your next design system
16 lines • 442 B
JavaScript
/**
* Responsive breakpoints and their values.
*/
export const breakpoints = {
xs: [0, 575],
sm: [576, 767],
md: [768, 991],
lg: [992, 1199],
xl: [1200, 1399],
xxl: [1400, Infinity]
};
/**
* Available window breakpoints. The emtpy string is required for generating class names without breakpoints.
*/
export const breakpointKeys = ['', 'xs', 'sm', 'md', 'lg', 'xl', 'xxl'];
//# sourceMappingURL=breakpoints.mjs.map