UNPKG

apphouse

Version:

Component library for React that uses observable state management and theme-able components.

41 lines (40 loc) 875 B
/** * Breakpoint for min XS screen width */ export const MinScreenSizeXS = 0; /** * Breakpoint for min S screen width */ export const MinScreenSizeS = 600; /** * Breakpoint for min M screen width */ export const MinScreenSizeM = 960; /** * Breakpoint for min L screen width */ export const MinScreenSizeL = 1280; /** * Breakpoint for min XL screen width */ export const MinScreenSizeXL = 1920; /** * Breakpoint for max XS screen width */ export const MaxScreenSizeXS = MinScreenSizeS - 1; /** * Breakpoint for max S screen width */ export const MaxScreenSizeS = MinScreenSizeM - 1; /** * Breakpoint for max M screen width */ export const MaxScreenSizeM = MinScreenSizeL - 1; /** * Breakpoint for max L screen width */ export const MaxScreenSizeL = MinScreenSizeXL - 1; /** * Breakpoint for max XL screen width */ export const MaxScreenSizeXL = undefined;