Sha256: f81b759dfce7df4f7750f60362ba332d731873dc72e3f0ac0699e44ebf29cf82

Contents?: true

Size: 403 Bytes

Versions: 4

Compression:

Stored size: 403 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-up {
  @media screen and (min-width: map-get($thredded-grid-breakpoint-max-widths, mobile) + 0.00001rem) {
    @content;
  }
}

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
thredded-0.4.0 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.3.2 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.3.1 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.3.0 app/assets/stylesheets/thredded/base/_grid.scss