JSPM

aleut.tools.responsive

1.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q27170F
  • License Apache-2.0

Responsive tooling for the aleutcss framework (based on Harry Roberts inuitcss framework)

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;
    }

}