feat: tune admin panel visual, add animations, expand dashboard

This commit is contained in:
3252a8
2026-05-12 23:40:41 +03:00
parent 94612e11f2
commit defbac43d7
17 changed files with 1297 additions and 183 deletions
@@ -29,7 +29,6 @@
background: rgba(0, 0, 0, 0.56);
backdrop-filter: blur(10px);
cursor: pointer;
animation: dialog-fade-in 0.18s ease-out both;
}
.dialog-card {
@@ -47,7 +46,6 @@
background: color-mix(in srgb, var(--panel) 94%, #07111a);
color: var(--text);
box-shadow: 0 26px 70px rgba(0, 0, 0, 0.46);
animation: dialog-slide-up 0.2s ease-out both;
}
.dialog-head {
@@ -118,22 +116,6 @@
min-height: 0;
}
@keyframes dialog-fade-in {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes dialog-slide-up {
from {
opacity: 0;
transform: translateY(18px) scale(0.98);
}
to {
opacity: 1;
transform: translateY(0) scale(1);
}
}
@media (min-width: 720px) {
.dialog-card {
border-radius: var(--radius-lg);