Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

style: fix header color to improve distinction (Fixes #484) #499

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/Sponsors/sponsors.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function Sponsors({eventSponsors,financialSponsor}) { //eventSponsors,financial
orchestrate an unforgettable celebration.
</Paragraph>
</div>
<Heading typeStyle='heading-md' className='text-white mt-10 sm:text-2xl sm:mt-5'>Event and Host Sponsor</Heading>
<Heading typeStyle='heading-md' className='text-gray-600 mt-10 sm:text-2xl sm:mt-5'>Event and Host Sponsor</Heading>
<div className='flex justify-center w-[650px] sm:w-full sm:flex-col sm:justify-center sm:items-center'>
{eventSponsors &&
eventSponsors.map((sponsor) => (
Expand All @@ -31,7 +31,7 @@ function Sponsors({eventSponsors,financialSponsor}) { //eventSponsors,financial
))}
</div>
<div className=' flex space-y-2 flex-col items-center justify-center text-white text-2xl font-bold'>
<Heading typeStyle='heading-md' className='text-white mb-12 sm:text-2xl'>Financial Sponsor</Heading>
<Heading typeStyle='heading-md' className='text-gray-600 mb-12 sm:text-2xl'>Financial Sponsor</Heading>
<div className='flex flex-col space-y-6'>
{financialSponsor &&
financialSponsor.map((sponsor) => (
Expand Down
Loading