Skip to content

Commit 6547ff4

Browse files
committed
fix: email icon format
1 parent 0699736 commit 6547ff4

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

app/contact/components/YourDetails.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,7 @@ export default function YourDetails() {
5959
/>
6060
</div>
6161

62-
<Button
63-
variant="footer"
64-
className="max-w-[148px] text-dark-green text-web-body-font "
65-
>
62+
<Button variant="footer" className="max-w-[148px] text-dark-green">
6663
Send
6764
</Button>
6865
</div>

app/contact/page.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ export default function ContactPage() {
107107
</div>
108108
<div
109109
className={`flex gap-[28px] ${
110-
width < 1024 ? 'flex-col items-center gap-[10px]' : 'flex-row'
110+
width < 1024 ? 'flex-col items-center gap-[0px] ' : 'flex-row'
111111
}`}
112112
>
113113
<Image
@@ -118,7 +118,9 @@ export default function ContactPage() {
118118
className=""
119119
/>
120120
<div className="flex flex-col text-white">
121-
<p className="text-[#FFC201] leading-[49px] text-web-medium-font font-bold">
121+
<p
122+
className={`text-[#FFC201] leading-[49px] text-web-medium-font font-bold ${width < 1024 ? 'leading-[25px] mt-[5px] md:leading-[45px]' : ''}`}
123+
>
122124
E-mail us
123125
</p>
124126
<p className="text-web-body-font">durianpy.davao@gmail.com</p>

0 commit comments

Comments
 (0)