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

fix(contact): minor fix for mobile style #100

Merged
merged 1 commit into from
Feb 19, 2024
Merged
Show file tree
Hide file tree
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
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
Loading