nexus base
All checks were successful
Deploy / deploy-staging (push) Successful in 6s
Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-05-15 01:19:31 +02:00
parent 52158ef041
commit 3ed4fba58c
12 changed files with 1975 additions and 29 deletions

View File

@@ -776,6 +776,108 @@ body.has-modal-open {
margin: 0;
}
.nexus-quick-grid {
display: grid;
gap: 18px;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
margin-top: 22px;
}
.nexus-stat-card {
display: grid;
gap: 10px;
align-content: start;
}
.nexus-stat-card strong {
font-size: clamp(1.35rem, 2vw, 2rem);
line-height: 1.1;
}
.dashboard-grid {
display: grid;
gap: 20px;
grid-template-columns: repeat(4, minmax(0, 1fr));
align-items: stretch;
}
.dashboard-widget {
display: grid;
gap: 14px;
min-height: 220px;
overflow: hidden;
}
.dashboard-widget__head {
display: flex;
gap: 16px;
justify-content: space-between;
align-items: start;
}
.dashboard-widget__head h2 {
margin: 6px 0 0;
font-size: 1.35rem;
}
.dashboard-widget__head p {
margin: 8px 0 0;
color: var(--text-soft);
}
.dashboard-widget__meta {
display: grid;
gap: 12px;
align-content: start;
}
.dashboard-widget__meta p {
margin: 0;
color: var(--text-soft);
word-break: break-word;
}
.dashboard-widget__frame {
width: 100%;
min-height: 300px;
border: 1px solid color-mix(in srgb, var(--border-soft) 85%, transparent);
border-radius: 16px;
background: rgba(255, 255, 255, 0.82);
}
.dashboard-widget__frame--page {
min-height: 70vh;
}
.dashboard-empty {
padding: 18px 20px;
border: 1px dashed color-mix(in srgb, var(--border-soft) 85%, transparent);
border-radius: 16px;
color: var(--text-soft);
background: rgba(255, 255, 255, 0.58);
}
@media (max-width: 1100px) {
.dashboard-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 720px) {
.dashboard-grid {
grid-template-columns: 1fr;
}
.dashboard-widget {
grid-column: auto !important;
grid-row: auto !important;
}
.dashboard-widget__head {
flex-direction: column;
}
}
.setup-shell {
display: grid;
gap: 10px;