Sha256: 537eff9864148370f51c0f036e0f451526b0f9a09eecd88d06b049a4003f990c

Contents?: true

Size: 607 Bytes

Versions: 2

Compression:

Stored size: 607 Bytes

Contents

// define a visually-hidden class that applies to a given breakpoint and below
// https://getbootstrap.com/docs/5.3/helpers/visually-hidden/
@if mixin-exists(visually-hidden) {
  @each $infix, $breakpoint in $grid-breakpoints {
    .visually-hidden-#{$infix} {
      @include media-breakpoint-down($breakpoint) {
        @include visually-hidden;
      }
    }
  }
} @else if mixin-exists(sr-only) {
  // Bootstrap 4 version
  @each $infix, $breakpoint in $grid-breakpoints {
    .visually-hidden-#{$infix} {
      @include media-breakpoint-down($breakpoint) {
        @include sr-only;
      }
    }
  }
}

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/blacklight-8.3.0/app/assets/stylesheets/blacklight/_mixins.scss
blacklight-8.3.0 app/assets/stylesheets/blacklight/_mixins.scss