Remove background, border, border-radius, and box-shadow from card styles for a cleaner design

This commit is contained in:
Matt Batchelder
2026-02-21 02:18:35 -05:00
parent e1d9b1a402
commit 0ec0e71d38

View File

@@ -2609,10 +2609,10 @@ p:last-child { margin-bottom: 0; }
max-width: 900px; max-width: 900px;
margin: 0 auto; margin: 0 auto;
padding: 1.5rem; padding: 1.5rem;
background: var(--card-bg, rgba(255,255,255,.04)); background: none;
border: 1px solid var(--color-border, #333); border: none;
border-radius: var(--radius-lg, 20px); border-radius: 0;
box-shadow: var(--shadow-md, 0 4px 24px rgba(0,0,0,.12)); box-shadow: none;
} }
.dashboard-chart { .dashboard-chart {
width: 100%; width: 100%;