https://github.com/twbs/bootstrap
Revision eb2fda2110e1b4a6375e49035660f993d8436d35 authored by Dimitri Papadopoulos Orfanos on 29 January 2022, 11:30:02 UTC, committed by GitHub on 29 January 2022, 11:30:02 UTC
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
1 parent 0840105
Raw File
Tip revision: eb2fda2110e1b4a6375e49035660f993d8436d35 authored by Dimitri Papadopoulos Orfanos on 29 January 2022, 11:30:02 UTC
docs: fix a couple typos found with codespell (#35733)
Tip revision: eb2fda2
_transitions.scss
.fade {
  @include transition($transition-fade);

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

// scss-docs-start collapse-classes
.collapse {
  &:not(.show) {
    display: none;
  }
}

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

  &.collapse-horizontal {
    width: 0;
    height: auto;
    @include transition($transition-collapse-width);
  }
}
// scss-docs-end collapse-classes
back to top