npm.io
2.0.0 • Published 5 years ago

media-query-gap

Licence
MIT
Version
2.0.0
Deps
1
Size
11 kB
Vulns
0
Weekly
0

media-query-gap

Build Status

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ć

Keywords