Files
ChurchAngular/src/app/@theme/components/header/breakPoint.ts
T
Chris Chen 6301d6008b WIP
2024-02-28 15:17:41 -08:00

34 lines
473 B
TypeScript

export const DEFAULT_MEDIA_BREAKPOINTS = [
{
name: 'xs',
width: 0,
},
{
name: 'is',
width: 400,
},
{
name: 'sm',
width: 576,
},
{
name: 'md',
width: 768,
},
{
name: 'lg',
width: 992,
},
{
name: 'xl',
width: 1200,
},
{
name: 'xxl',
width: 1400,
},
{
name: 'xxxl',
width: 1600,
},
];