All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.scss._transitions.scss Maven / Gradle / Ivy

Go to download

The most popular front-end framework for developing responsive, mobile first projects on the web.

The newest version!
.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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy