From 510e1080e0e30e505594291bdb0add7a858b494f Mon Sep 17 00:00:00 2001 From: Marco Allegretti Date: Fri, 30 Jan 2026 11:28:10 +0100 Subject: [PATCH] ux: remove unused card CSS leftovers --- .../src/pages/communities/[slug]/index.astro | 26 ------------------- frontend/src/pages/proposals/[id].astro | 14 ---------- 2 files changed, 40 deletions(-) diff --git a/frontend/src/pages/communities/[slug]/index.astro b/frontend/src/pages/communities/[slug]/index.astro index 75e4680..c663332 100644 --- a/frontend/src/pages/communities/[slug]/index.astro +++ b/frontend/src/pages/communities/[slug]/index.astro @@ -489,32 +489,6 @@ const { slug } = Astro.params; margin-top: 1.5rem; } - .sections { - display: grid; - grid-template-columns: 1fr 1fr; - gap: 2rem; - } - - @media (max-width: 768px) { - .sections { - grid-template-columns: 1fr; - } - } - - .section { - background: var(--color-surface); - border: 1px solid var(--color-border); - border-radius: 12px; - padding: 1.5rem; - } - - .section h2 { - font-size: 1.125rem; - margin-bottom: 1rem; - padding-bottom: 0.75rem; - border-bottom: 1px solid var(--color-border); - } - .proposals-list { display: grid; gap: 0.5rem; diff --git a/frontend/src/pages/proposals/[id].astro b/frontend/src/pages/proposals/[id].astro index 5ed3234..e34aed4 100644 --- a/frontend/src/pages/proposals/[id].astro +++ b/frontend/src/pages/proposals/[id].astro @@ -915,20 +915,6 @@ const proposalId = id ?? ''; border-color: var(--color-primary); } - .results-section { - margin-top: 2rem; - padding: 1.5rem; - background: var(--color-surface); - border: 1px solid var(--color-border); - border-radius: 12px; - } - - .results-section h3 { - color: var(--color-primary); - margin-bottom: 1rem; - font-size: 1.25rem; - } - .results-summary { display: flex; gap: 1.5rem;