Sha256: 90d7ffb7b7249308d60c1e7957e817a59515a71533eda676a7425da84d53482e
Contents?: true
Size: 621 Bytes
Versions: 7
Compression:
Stored size: 621 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 $breakpoint in map-keys($grid-breakpoints) { .visually-hidden-#{$breakpoint} { @include media-breakpoint-down($breakpoint) { @include visually-hidden; } } } } @else if mixin-exists(sr-only) { // Bootstrap 4 version @each $breakpoint in map-keys($grid-breakpoints) { .visually-hidden-#{$breakpoint} { @include media-breakpoint-down($breakpoint) { @include sr-only; } } } }
Version data entries
7 entries across 7 versions & 1 rubygems