aleut.tools.responsive
v1.0.1
Published
Responsive tooling for the aleutcss framework (based on Harry Roberts inuitcss framework)
Downloads
11
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;
}
}