Newer
Older
iuav-ui / src / breakpoints.ts
@elcar elcar on 15 Jan 215 bytes :feat: lib (src), dist, test
export const breakpoints = {
    sm: '(min-width: 40rem)',
    md: '(min-width: 48rem)',
    lg: '(min-width: 62rem)',
    xl: '(min-width: 80rem)',
    xxl: '(min-width: 120rem)',
    xxxl: '(min-width: 128rem)'
};