refactor(button): consolidate button styles into Button.astro

Extends Button.astro with a center prop, native <button> element support
(type, disabled, aria-describedby), harmonised padding (.65rem), and
transition. Removes global .button, .button-small, .button-light, and
.button-center rules from components.css, layout.css, and typography.css.
Converts all inline class="button" usages across Header, HomeHero,
HomeFinancialHelp, HomeServicesIntro, FormShell, TeamPage, CareersPage,
and FaqPage to the <Button> component. Updates three scoped style
selectors to :global() to reach the child component's elements.
This commit is contained in:
2026-06-25 20:59:02 -07:00
parent a3f666c974
commit c6202d2ac6
12 changed files with 56 additions and 30 deletions
+3 -2
View File
@@ -1,4 +1,5 @@
---
import Button from '../Button.astro';
---
<article class="faq-page">
<div class="faq-source container source-page">
@@ -48,7 +49,7 @@
<div class="container-narrow">
<h2>Need Support in Getting an Autism Diagnosis?</h2>
<p>To meet diagnostic criteria for ASD, a child must have persistent deficits in each of three areas of social communication and interaction plus at least two of four types of restricted repetitive behaviors. Consult with a Client Advocate today to receive individual and family support!</p>
<a class="button button-center" href="/client-consultation">Request an Appointment</a>
<Button href="/client-consultation" center>Request an Appointment</Button>
</div>
</section>
</article>
@@ -583,7 +584,7 @@
margin-bottom: .75rem;
}
.faq-cta-secondary .button {
.faq-cta-secondary :global(.content-button) {
margin-top: 1.5rem;
}