vue3-loading-overlay
Version:
Vue.js component for full screen loading indicator, compatible for vue3.
40 lines (34 loc) • 577 B
CSS
.vld-shown {
overflow: hidden;
}
.vld-overlay {
bottom: 0;
left: 0;
position: absolute;
right: 0;
top: 0;
align-items: center;
display: none;
justify-content: center;
overflow: hidden;
z-index: 9999;
}
.vld-overlay.is-active {
display: flex;
}
.vld-overlay.is-full-page {
z-index: 9999;
position: fixed;
}
.vld-overlay .vld-background {
bottom: 0;
left: 0;
position: absolute;
right: 0;
top: 0;
background: #fff;
opacity: 0.5;
}
.vld-overlay .vld-icon, .vld-parent {
position: relative;
}