mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 11:36:36 +00:00
14 lines
331 B
JavaScript
14 lines
331 B
JavaScript
/**
|
|
* Carbon grid breakpoints in px.
|
|
* @see https://carbondesignsystem.com/elements/2x-grid/overview/#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;
|