Skip to content

Commit

Permalink
fix methodology checkbox
Browse files Browse the repository at this point in the history
  • Loading branch information
Maria Sola authored and mariasola committed Jul 13, 2023
1 parent 857e31c commit 4312be6
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions marketing/src/containers/methodology/stay-up-to-date/component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,12 @@ const StayUpToDate: FC = () => {
id="accept-terms"
type="checkbox"
{...register('terms')}
className={cx('w-5 h-5 border-2 border-black', {
'border-red-500': errors.terms,
})}
className={cx(
'w-5 h-5 rounded-full border-2 border-black bg-orange-500',
{
'border-red-500': errors.terms,
},
)}
/>
<label className="font-light" htmlFor="accept-terms">
I agree with LandGriffon&apos;s{' '}
Expand All @@ -142,9 +145,12 @@ const StayUpToDate: FC = () => {
id="newsletter"
type="checkbox"
{...register('newsletter')}
className={cx('w-5 h-5 border-2 border-black', {
'border-red-500': errors.newsletter,
})}
className={cx(
'w-5 h-5 rounded-full border-2 border-black bg-orange-500',
{
'border-red-500': errors.newsletter,
},
)}
/>
<label className="font-light" htmlFor="newsletter">
Send me LandGriffon&apos;s general newsletter as well.
Expand Down

1 comment on commit 4312be6

@vercel
Copy link

@vercel vercel bot commented on 4312be6 Jul 13, 2023

Choose a reason for hiding this comment

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

Successfully deployed to the following URLs:

landgriffon-marketing – ./marketing

landgriffon-marketing.vercel.app
landgriffon-marketing-vizzuality1.vercel.app
landgriffon-marketing-git-dev-vizzuality1.vercel.app

Please sign in to comment.