Newer
Older
anicusi / scss / mixins.scss
@Eugene Eugene on 11 Apr 343 bytes init
@mixin media($minmax, $media) {
	@each $size, $resolution in $sizes {
		@if $media == $size {
			@if $minmax == "max" {
				@media only screen and (#{$minmax}-width: #{$resolution}px) {
					@content;
				}
			}

			@if $minmax == "min" {
				@media only screen and (#{$minmax}-width: #{$resolution + 1}px) {
					@content;
				}
			}
		}
	}
}