Sha256: 80c86d3aca71a252b8b71c17accfbf1830dff724321a654f7986ab527b6d0c96

Contents?: true

Size: 990 Bytes

Versions: 2

Compression:

Stored size: 990 Bytes

Contents

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

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

@mixin thredded-media-tablet-and-up {
  @media screen and (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 screen and (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

2 entries across 2 versions & 1 rubygems

Version Path
thredded-0.8.4 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.8.2 app/assets/stylesheets/thredded/base/_grid.scss