.appWrapper { height: calc(100vh - 22px); background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%); } .loader-enter { opacity: 0; transform: scale(0.9); } .loader-enter-active { opacity: 1; transform: translateX(0); transition: opacity 300ms, transform 300ms; } .loader-exit { opacity: 1; } .loader-exit-active { opacity: 0; transform: scale(0.9); transition: opacity 300ms, transform 300ms; } .appWrapper-enter { opacity: 0; } .appWrapper-enter-active { opacity: 1; transition: opacity 500ms, transform 500ms; } .appWrapper-exit { opacity: 1; } .appWrapper-exit-active { opacity: 0; transition: opacity 500ms, transform 500ms; }