summaryrefslogtreecommitdiff
path: root/xstatic/pkg/bootstrap_scss/data/scss/bootstrap/_component-animations.scss
blob: 186f121dd34c14452b1aa5e0248494b468b94137 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// COMPONENT ANIMATIONS
// --------------------

.fade {
  @include transition(opacity .15s linear);
  opacity: 0;
  &.in {
    opacity: 1;
  }
}

.collapse {
  @include transition(height .35s ease);
  position:relative;
  overflow:hidden;
  height: 0;
  &.in { height: auto; }
}