Skip to content

Commit

Permalink
Merge pull request smaranjitghose#719 from Rohit-Parameswaran/change-…
Browse files Browse the repository at this point in the history
…form-ui

Form UI changed
  • Loading branch information
anushbhatia authored Mar 19, 2021
2 parents 834ce0a + 1df70d1 commit 849206b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/pages/Home/sections/Contact/ContactUs.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

.map {
min-height: 60vh;
min-width: 418px;
min-width: 350px;
display: flex;
align-items: center;
flex: 1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
cursor: pointer;
transition: 0.3s;
margin: 8px;
display: block;
}

.radio:checked ~ span {
Expand All @@ -21,7 +22,12 @@
margin: 6px;
}

.emoji {
transition: all 0.5s ease-in;
}

.emoji:hover {
filter: grayscale(0);
opacity: 1;
transform: scale(1.5);
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ textarea {
}

.info {
width: 350px;
width: 500px;
}

.general_info {
Expand Down Expand Up @@ -60,6 +60,11 @@ textarea {
color: #7b7474;
}

.contact_form textarea:focus{
border: 1px solid white;
border-radius: 20px;
}

.submit {
background: #3d1f90;
font-size: 14px;
Expand Down Expand Up @@ -177,8 +182,9 @@ textarea {
font-weight: bold;
}

@media (max-width: 768px) {
@media (max-width: 890px) {
.info {
min-width: 70%;
width: 450px;
}
}

0 comments on commit 849206b

Please sign in to comment.