media-query-gap
v2.0.0
Published
Apply gap on max-width/height media queries.
Downloads
6,766
Readme
media-query-gap
Apply gap on max-width/height media queries.
Useful when you want to prevent double breakpoints.
This is a low-level module. You’re probably looking for PostCSS or Babel plugin.
Install
npm install media-query-gap --save
Usage
import mediaQueryGap from 'media-query-gap';
console.log(emMediaQuery('screen and (max-width:600px)'));
// 'screen and (max-width:599px)'
console.log(emMediaQuery('screen and (max-width:37.5em)'));
// 'screen and (max-width:37.49em)'
API
mediaQueryGap(str)
Returns: string
str
Type: string
Media query to convert.
License
MIT © Ivan Nikolić