Files @ 65bed40fafa0
Branch filter:

Location: symposion_app/static/src/bootstrap/scss/mixins/_transition.scss - annotation

James Polley
Switch to building in the rego-dev namespace
@mixin transition($transition...) {
  @if $enable-transitions {
    @if length($transition) == 0 {
      transition: $transition-base;
    } @else {
      transition: $transition;
    }
  }

  @media screen and (prefers-reduced-motion: reduce) {
    transition: none;
  }
}