chore: update guide and scripts

lint files
This commit is contained in:
Enrico Sacchetti 2023-01-13 14:07:01 -05:00
commit a4ef8d2db3
No known key found for this signature in database
GPG key ID: 3374B89ECA60D796
6 changed files with 94 additions and 47 deletions

View file

@ -1,11 +1,11 @@
/**
* Pixel sizes of Carbon grid breakpoints.
* @type {Record<BreakpointSize, BreakpointValue>}
*/
export const breakpoints: Record<BreakpointSize, BreakpointValue>;
export type BreakpointSize = "sm" | "md" | "lg" | "xlg" | "max";
export type BreakpointValue = 320 | 672 | 1056 | 1312 | 1584;
export default breakpoints;
/**
* Pixel sizes of Carbon grid breakpoints.
* @type {Record<BreakpointSize, BreakpointValue>}
*/
export const breakpoints: Record<BreakpointSize, BreakpointValue>;
export type BreakpointSize = "sm" | "md" | "lg" | "xlg" | "max";
export type BreakpointValue = 320 | 672 | 1056 | 1312 | 1584;
export default breakpoints;