Files
vf_react/boilerplate-chakra-pro-main/theme/foundations/breakpoints.js
2025-11-22 11:41:56 +08:00

12 lines
229 B
JavaScript

import { createBreakpoints } from '@chakra-ui/theme-tools';
export const breakpoints = createBreakpoints({
sm: '320px',
'2sm': '380px',
md: '768px',
lg: '960px',
xl: '1200px',
'2xl': '1600px',
'3xl': '1920px',
});