Files @ 3d5ed5c5160a
Branch filter:

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

James Polley
Turn review jobs back on

Use a new "rego-review" namespace to not interfere with the dev instance.
@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;
  }
}