Sha256: c2888a46f246f422249fe2f3ee1bc1e859ce3d411de98aef361e26c7402dff17

Contents?: true

Size: 946 Bytes

Versions: 6

Compression:

Stored size: 946 Bytes

Contents

@mixin thredded-media-mobile {
  @media (max-width: map-get($thredded-grid-breakpoint-max-widths, mobile)) {
    @content;
  }
}

@mixin thredded-media-tablet-and-down {
  @media (max-width: map-get($thredded-grid-breakpoint-max-widths, tablet)) {
    @content;
  }
}

@mixin thredded-media-tablet-and-up {
  @media (min-width: map-get($thredded-grid-breakpoint-max-widths, mobile) + 0.00001rem) {
    @content;
  }
}

@mixin thredded-media-tablet {
  @include thredded-media-tablet-and-up {
    @include thredded-media-tablet-and-down {
      @content;
    }
  }
}

@mixin thredded-media-desktop-and-up {
  @media (min-width: map-get($thredded-grid-breakpoint-max-widths, tablet) + 0.00001rem) {
    @content;
  }
}

@mixin thredded-media-avatar-breakout {
  @media (min-width: $thredded-grid-container-max-width + 4rem) {
    @content;
  }
}

@mixin thredded--clearfix {
  &::after {
    clear: both;
    content: "";
    display: block;
  }
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
thredded-0.10.1 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.10.0 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.9.4 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.9.3 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.9.2 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.9.1 app/assets/stylesheets/thredded/base/_grid.scss