mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-19 11:59:34 +00:00
13 lines
262 B
JavaScript
13 lines
262 B
JavaScript
/**
|
|
* Pixel sizes of Carbon grid breakpoints.
|
|
* @type {Record<import("./breakpoints").BreakpointSize, BreakpointValue>}
|
|
*/
|
|
export const breakpoints = Object.freeze({
|
|
sm: 320,
|
|
md: 672,
|
|
lg: 1056,
|
|
xlg: 1312,
|
|
max: 1584,
|
|
});
|
|
|
|
export default breakpoints;
|