Sha256: f939c43785f2f7221d122b45bf166a954110d69957d16046cebd351b949f5333

Contents?: true

Size: 842 Bytes

Versions: 5

Compression:

Stored size: 842 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-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

5 entries across 5 versions & 1 rubygems

Version Path
thredded-0.7.0 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.6.3 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.6.2 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.6.1 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.6.0 app/assets/stylesheets/thredded/base/_grid.scss