Revision dbb244cb97d8bdd1dc765a573aa9a77005f25e86 authored by Mark Otto on 02 December 2012, 01:45:33 UTC, committed by Mark Otto on 02 December 2012, 01:45:33 UTC
2 parent s bca3ff4 + fbec803
Raw File
component-animations.less
//
// Component animations
// --------------------------------------------------


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

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