_size-animation.scss 370 B

12345678910111213141516171819202122232425262728
  1. .ui-size-animation {
  2. &.height {
  3. overflow: hidden;
  4. }
  5. &:not(.ready) {
  6. opacity: 0;
  7. }
  8. &.ready {
  9. transition: max-height .2s ease;
  10. }
  11. &.scale {
  12. transform-origin: center top;
  13. transform: scaleY(0);
  14. &.show {
  15. transform: scaleY(1);
  16. }
  17. &.ready {
  18. transition: max-height .2s ease,
  19. transform .2s ease;
  20. }
  21. }
  22. }