Skip to content

Commit

Permalink
Replaced all the css into tailwind css on SponsorsSection component (#…
Browse files Browse the repository at this point in the history
…1772)

Co-authored-by: Kyle Holmberg <[email protected]>
  • Loading branch information
subhajit20 and kylemh authored Nov 17, 2023
1 parent 9dbe76b commit c75ee3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import Container from 'components/Container/Container';
import Heading from 'components/Heading/Heading';
import PartnerLogoLink from 'components/PartnerLogoLink/PartnerLogoLink';
import partners, { PARTNER_TYPES } from 'common/constants/partners';
import styles from './SponsorsSection.module.css';

const isPaidSponsor = partner => partner.type === PARTNER_TYPES.PAID;

Expand All @@ -15,7 +14,7 @@ const SponsorsSection = () => (
These sponsors have donated cash to help keep the mission going here at Operation Code. They
may or may not have also donated to our cause via others means.
</p>
<div className={styles.columnsContainer}>
<div className="flex justify-center items-center flex-wrap [&>*]:m-4">
{partners
.filter(x => isPaidSponsor(x))
.map(partner => (
Expand All @@ -28,7 +27,7 @@ const SponsorsSection = () => (
The following organizations have helped Operation Code through services, products,
advertisements, scholarships, or sponsorships. We thank them for their contributions.
</p>
<div className={styles.columnsContainer}>
<div className="flex justify-center items-center flex-wrap [&>*]:m-4">
{partners
.filter(x => !isPaidSponsor(x))
.map(partner => (
Expand Down

This file was deleted.

2 comments on commit c75ee3a

@vercel
Copy link

@vercel vercel bot commented on c75ee3a Nov 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on c75ee3a Nov 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.