@import "shadow"; .image { position: absolute; top: 9px; left: calc(50% - 112px); width: 224px; border-radius: 5px; border: 1px solid rgba(255, 255, 255, 0.5); @include shadow(); } .appear-enter { opacity: 0.01; } .appear-enter.appear-enter-active { opacity: 1; transition: opacity 500ms ease-in; } .appear-leave { opacity: 1; } .appear-leave.appear-leave-active { opacity: 0.01; transition: opacity 300ms ease-in; }