master-co / css

The CSS Language and Framework

Home Page:https://css.master.co

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

πŸ’– Merge `config.viewports` to `config.mediaQueries`

1aron opened this issue Β· comments

commented

Description

Current

export default {
    viewports: {
        mobile: 600,
        tablet: 1024,
        desktop: 1440
    },
    mediaQueries: {
        watch: '(max-device-width:42mm) and (min-device-width:38mm)'
    }
}

Expected

export default {
    mediaQueries: {
        mobile: 600,
        tablet: 1024,
        desktop: 1440,
        watch: '(max-device-width:42mm) and (min-device-width:38mm)'
    }
}