Skip to content

Commit

Permalink
Merge pull request #328 from Vandivier/275-testimonial-widget-pt-2
Browse files Browse the repository at this point in the history
fix: advanced checklist CTA style
  • Loading branch information
Vandivier authored Sep 29, 2024
2 parents c10fc6c + 388608d commit 4c20647
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
9 changes: 4 additions & 5 deletions blitz-app/src/app/home/HomePageContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,9 @@ const AdvancedChecklistContentBlock = () => {

return isPaid ? (
<div
className={`${styles['next-steps-card']} rounded-lg bg-white p-2 shadow-lg`}
style={{ marginTop: '0.5rem' }}
className={`m-2 w-[300px] rounded-lg bg-white p-2 shadow-lg lg:w-auto`}
>
<h3 className="text-m font-bold text-gray-800">
<p className="text-gray-800">
As a paid member, you can access the{' '}
<Link
className="text-m font-bold text-ladderly-pink hover:underline"
Expand All @@ -129,7 +128,7 @@ const AdvancedChecklistContentBlock = () => {
Advanced Checklist
</Link>
!
</h3>
</p>
</div>
) : null
}
Expand Down Expand Up @@ -164,7 +163,7 @@ const HomePage = () => (
<LadderlyHelpsContentBlock />
</div>

<div>
<div className="flex flex-col items-center">
<div className="flex flex-col justify-center sm:mt-4 sm:flex-row">
<section id="testimonials">
<h2 className="text-l mt-3 px-6 font-bold text-gray-800 sm:text-xl">
Expand Down
4 changes: 4 additions & 0 deletions blitz-app/src/app/styles/Home.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
width: 400px;
}

.mx-auto.next-steps-card {
margin: 0.5rem auto;
}

.wrapper {
display: flex;
flex-direction: column;
Expand Down
4 changes: 2 additions & 2 deletions blitz-app/src/core/components/pricing-grid/PricingGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ const PricingGrid: React.FC = () => {
const isLoggedIn = Boolean(currentUser)

return (
<div className="mx-auto mt-10 max-w-7xl rounded-lg bg-frost p-6">
<h1 className="mb-10 text-center text-4xl font-bold">Pricing Plans</h1>
<div className="mx-auto mt-4 max-w-7xl rounded-lg bg-frost p-6">
<h1 className="mb-4 text-center text-2xl font-bold">Pricing Plans</h1>

<div className="grid grid-cols-1 gap-6 md:grid-cols-2 lg:grid-cols-3">
{plans.map((plan, i) => (
Expand Down

0 comments on commit 4c20647

Please sign in to comment.