Files @ bf46c82fe4a4
Branch filter:

Location: symposion_app/static/src/bootstrap/scss/_transitions.scss

Joel Addison
Fix venueless token creation

Do not generate token or checkin if user does not have a ticket.
Clear existing token if user no longer has a ticket.
.fade {
  @include transition($transition-fade);

  &:not(.show) {
    opacity: 0;
  }
}

.collapse {
  &:not(.show) {
    display: none;
  }
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  @include transition($transition-collapse);
}