Files @ 71805cc66e00
Branch filter:

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

bsturmfels
Add additional account app templates

This works around use block "body" when we need block "content".
.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);
}