nexus base
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user