Sha256: 1d57f4d92a51feca798ba7e1ebffe9e110c67529dbae06880119fe1e15f1c324

Contents?: true

Size: 715 Bytes

Versions: 2

Compression:

Stored size: 715 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--clearfix {
  &::after {
    clear: both;
    content: "";
    display: block;
  }
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
thredded-0.5.1 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.5.0 app/assets/stylesheets/thredded/base/_grid.scss