15 lines
311 B
CSS
15 lines
311 B
CSS
.loading-spinner-overlay {
|
|
position: absolute;
|
|
inset: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: rgba(0, 0, 0, 0.28);
|
|
z-index: var(--player-z-loading);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.loading-spinner {
|
|
animation: fadeIn var(--player-transition-normal) ease;
|
|
}
|