Sha256: afd3e8b1ec4808adbdbc7fd34c1042d5187a0c083eec4fada80ab9ed4c87b69a

Contents?: true

Size: 704 Bytes

Versions: 1

Compression:

Stored size: 704 Bytes

Contents

$respond-below-xs: 480px !default
$respond-below-s:  600px !default
$respond-below-m:  768px !default
$respond-below-l:  992px !default
$respond-below-xl: 1382px !default

=respond-below($screen-size)
  @if $screen-size == xs
    @media only screen and (max-width: $respond-below-xs)
      @content
  @else if $screen-size == s
    @media only screen and (max-width: $respond-below-s)
      @content
  @else if $screen-size == m
    @media only screen and (max-width: $respond-below-m)
      @content
  @else if $screen-size == l
    @media only screen and (max-width: $respond-below-l)
      @content
  @else if $screen-size == xl
    @media only screen and (max-width: $respond-below-xl)
      @content

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
compass-respond-0.1.0 lib/stylesheets/_respond-below.sass