Package Exports
- aleut.tools.responsive
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (aleut.tools.responsive) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Responsive
A simple mixin to quickly generate whole media queries from the aliases and
conditions defined in _settings.responsive.scss
or your own override of the $breakpoints
-sass-map.
Install using npm:
$ npm install --save-dev aleut.tools.responsive
Usage
Basic usage of the functions in a SCSS-file:
.foo {
color: green;
@include media-query(s) {
color: red;
}
}