aboutsummaryrefslogtreecommitdiffstats
path: root/npm_assets/node_modules/bootstrap/scss/_transitions.scss
blob: a261f2ddc5d8d83055c83c8141df7de5bcf26222 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
.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);

  &.width {
    width: 0;
    height: auto;
    @include transition($transition-collapse-width);
  }
}