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;
margin: 0 auto;
padding: 1.5rem;
background: var(--card-bg, rgba(255,255,255,.04));
border: 1px solid var(--color-border, #333);
border-radius: var(--radius-lg, 20px);
box-shadow: var(--shadow-md, 0 4px 24px rgba(0,0,0,.12));
background: none;
border: none;
border-radius: 0;
box-shadow: none;
}
.dashboard-chart {
width: 100%;