Skip to content

Commit

Permalink
fix(contact): minor fix for mobile style (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsun969 authored and phoenixpereira committed Feb 24, 2024
1 parent 97c5c2a commit 3da5c9e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/contact/Form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function Form({ className }: { className?: string }) {

return (
<div className={`${className} relative`}>
<div className="absolute right-[25px] top-[-48px] gap-6 md:flex">
<div className="absolute right-[25px] top-[-48px] hidden gap-6 md:flex">
<Duck colour="white" />
<Duck colour="white" />
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/app/contact/Sponsorship.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Image from 'next/image';
export default function Sponsorship({ className }: { className?: string }) {
return (
<div className={`${className} space-y-6`}>
<div className="flex items-center justify-between">
<div className="flex items-center justify-center md:justify-between">
<FancyRectangle colour="orange" offset="8" filled={false}>
<div className="w-fit bg-orange p-2">
<h2 className="text-2xl font-bold text-grey md:text-4xl">
Expand All @@ -18,7 +18,7 @@ export default function Sponsorship({ className }: { className?: string }) {
alt="Crosses"
height={80}
width={237}
className="w-1/3 md:w-fit"
className="hidden w-1/3 md:block md:w-fit"
/>
</div>
<Paragraph>
Expand Down

0 comments on commit 3da5c9e

Please sign in to comment.