diff --git a/src/styles/global/_animations.scss b/src/styles/global/_animations.scss index eac29df3..d1fee8c5 100644 --- a/src/styles/global/_animations.scss +++ b/src/styles/global/_animations.scss @@ -28,20 +28,22 @@ &.ng-hide-add { display: block !important; opacity: 1; - transition: all linear .5s; + transition: all linear 0s; &.ng-hide-add-active { opacity: 0; + transition: all linear .5s; } } &.ng-hide-remove { display: block !important; opacity: 0; - transition: all linear .5s; + transition: all linear 0s; &.ng-hide-remove-active { opacity: 1; + transition: all linear .5s; } } }