diff --git a/frontend/src/components/cases/CasesList.astro b/frontend/src/components/cases/CasesList.astro index 7a0c4ca..2135d70 100644 --- a/frontend/src/components/cases/CasesList.astro +++ b/frontend/src/components/cases/CasesList.astro @@ -1,6 +1,5 @@ --- import Pagination from '@components/base/Pagination.astro'; -import CTA from '@components/base/CTA.astro'; interface Case { id: number; @@ -230,14 +229,6 @@ const categories = ["Все", ...Array.from(new Set(cases.map((c: Case) => c.cat baseUrl={baseUrl} /> )} - - - @@ -260,7 +251,8 @@ const categories = ["Все", ...Array.from(new Set(cases.map((c: Case) => c.cat } .cases-section { - padding: 6rem 1.5rem; + padding-top: 3rem; + padding-bottom: 1.5rem; background: linear-gradient(180deg, #ffffff 0%, var(--color-bg) 100%); font-family: 'Inter', system-ui, -apple-system, sans-serif; } @@ -650,7 +642,8 @@ const categories = ["Все", ...Array.from(new Set(cases.map((c: Case) => c.cat @media (max-width: 768px) { .cases-section { - padding: 4rem 1rem; + padding-top: 1.5rem; + padding-bottom: 0; } .cases-header {