app loading

This commit is contained in:
YHH
2025-10-15 18:29:48 +08:00
parent f4ea077114
commit 03909924c2
2 changed files with 59 additions and 6 deletions

View File

@@ -174,3 +174,36 @@
align-items: center;
gap: var(--spacing-sm);
}
.loading-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(30, 30, 30, 0.95);
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
backdrop-filter: blur(4px);
}
.loading-content {
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
padding: 32px 48px;
background-color: #252526;
border: 1px solid #3e3e42;
border-radius: 4px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.loading-message {
font-size: 14px;
color: #cccccc;
margin: 0;
white-space: nowrap;
}