1.0.1 • Published 8 years ago

aleut.tools.responsive v1.0.1

Weekly downloads
4
License
Apache-2.0
Repository
github
Last release
8 years ago

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

}