diff --git a/components/ReusableSections/SponsorsSection/SponsorsSection.js b/components/ReusableSections/SponsorsSection/SponsorsSection.js index 3196f9193..c58bf3f02 100644 --- a/components/ReusableSections/SponsorsSection/SponsorsSection.js +++ b/components/ReusableSections/SponsorsSection/SponsorsSection.js @@ -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; @@ -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.

-
+
{partners .filter(x => isPaidSponsor(x)) .map(partner => ( @@ -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.

-
+
{partners .filter(x => !isPaidSponsor(x)) .map(partner => ( diff --git a/components/ReusableSections/SponsorsSection/SponsorsSection.module.css b/components/ReusableSections/SponsorsSection/SponsorsSection.module.css deleted file mode 100644 index 8548a37a5..000000000 --- a/components/ReusableSections/SponsorsSection/SponsorsSection.module.css +++ /dev/null @@ -1,24 +0,0 @@ -.verticalSpacing { - margin-top: 1rem; - margin-bottom: 1rem; -} - -.container { - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - margin: 1rem auto; -} - -.columnsContainer { - display: flex; - justify-content: center; - align-items: center; - flex-wrap: wrap; -} - -/* the individual columns */ -.columnsContainer > * { - margin: 1rem; -}