.loader-overlay { z-index: 99999; position: fixed; top: 0; left: 0; display: flex; align-items: center; justify-content: center; width: 100vw; height: 100vh; background: rgba(0, 0, 0, .3); img { width: 80px; height: 80px; animation: spin 1s linear infinite; } } @keyframes spin { to { transform: rotate(360deg); } } .fade-enter-active, .fade-leave-active { transition: opacity .2s ease; } .fade-enter-from, .fade-leave-to { opacity: 0; }