This commit is contained in:
Mateusz Gruszczyński
2026-05-08 23:34:22 +02:00
parent c331dcf41f
commit da17facf39
3 changed files with 53 additions and 19 deletions

View File

@@ -1425,7 +1425,7 @@ body.mobile-mode .mobile-card {
white-space: normal;
word-break: break-word;
}
/* Note: Smart Queue nerd stats are scoped to Automations to avoid reusing or overriding generic cards. */
/* Note: Smart Queue stats are reusable because they are shown in App status. */
.automation-smart-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
@@ -2326,6 +2326,34 @@ body.mobile-mode .mobile-filter-bar {
color: var(--bs-secondary-color);
}
.about-summary-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
gap: 0.6rem;
}
.about-summary-grid div {
padding: 0.7rem;
border: 1px solid var(--bs-border-color);
border-radius: 0.75rem;
background: rgba(var(--bs-secondary-bg-rgb), 0.28);
}
.about-summary-grid b,
.about-summary-grid span {
display: block;
}
.about-summary-grid b {
margin-bottom: 0.2rem;
}
.about-summary-grid span {
color: var(--bs-secondary-color);
font-size: 0.82rem;
}
.about-list {
display: grid;
gap: 0.55rem;