Skip to content

Commit 1887430

Browse files
committed
completed all tasks
1 parent 6d19272 commit 1887430

File tree

2 files changed

+19
-5
lines changed

2 files changed

+19
-5
lines changed

src/pages/contact/Contact.module.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,17 @@
124124
border-radius: 5px;
125125
}
126126

127+
.main__contact_contains_right .form_container .form_group .phone_input {
128+
background-color: transparent;
129+
}
130+
131+
.main__contact_contains_right .form_container .form_group .form_select {
132+
width: 100%;
133+
padding: 0.5rem;
134+
border: 1px solid #ccc;
135+
border-radius: 5px;
136+
}
137+
127138
.main__contact_contains_right .form_container .form_group .form_textarea {
128139
width: 100%;
129140
padding: 0.5rem;

src/pages/contact/index.tsx

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export default function Contact(): JSX.Element {
6262
<div className={styles.main__contact_ud_wrapper}>
6363
<div className={styles.ud_contact_title}>
6464
<motion.span
65-
initial={{ opacity: 0, x: -150 }}
65+
initial={{ opacity: 0, x: -15 }}
6666
whileInView={{ opacity: 1, x: 0 }}
6767
viewport={{ once: true }}
6868
transition={{
@@ -92,7 +92,7 @@ export default function Contact(): JSX.Element {
9292
</div>
9393
<div className={styles.contact_info}>
9494
<motion.div
95-
initial={{ opacity: 0, y: 150 }}
95+
initial={{ opacity: 0, y: 15 }}
9696
whileInView={{ opacity: 1, y: 0 }}
9797
viewport={{ once: true }}
9898
transition={{
@@ -122,7 +122,7 @@ export default function Contact(): JSX.Element {
122122
</div>
123123
</motion.div>
124124
<motion.div
125-
initial={{ opacity: 0, y: 150 }}
125+
initial={{ opacity: 0, y: 15 }}
126126
whileInView={{ opacity: 1, y: 0 }}
127127
viewport={{ once: true }}
128128
transition={{
@@ -154,7 +154,7 @@ export default function Contact(): JSX.Element {
154154
</div>
155155
</div>
156156
<motion.div
157-
initial={{ opacity: 0, x: 150 }}
157+
initial={{ opacity: 0, x: 15 }}
158158
whileInView={{ opacity: 1, x: 0 }}
159159
viewport={{ once: true }}
160160
transition={{
@@ -197,6 +197,9 @@ export default function Contact(): JSX.Element {
197197
/>
198198
</div>
199199
<div className={styles.form_group}>
200+
<label htmlFor="phone" className={styles.form_label}>
201+
Phone Number
202+
</label>
200203
<PhoneInput
201204
country={'us'}
202205
value={formValues.phone}
@@ -207,7 +210,7 @@ export default function Contact(): JSX.Element {
207210
</div>
208211
<div className={styles.form_group}>
209212
<label htmlFor="feedbackType" className={styles.form_label}>
210-
Feedback Type*
213+
Feedback Type* &nbsp;
211214
</label>
212215
<select
213216
name="feedbackType"

0 commit comments

Comments
 (0)