Skip to content

Commit

Permalink
Fixed overflowing of textarea in Contact page (#806)
Browse files Browse the repository at this point in the history
  • Loading branch information
vedanshipathak authored May 24, 2024
1 parent e86559e commit ca00697
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion assets/contact/contact.css
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ header {
justify-content: center;
align-items: center;
box-shadow: -10px -10px 50px #b400a5;
overflow: auto;
}

.contact-container h2 {
Expand Down Expand Up @@ -79,6 +80,11 @@ textarea {
transition: all linear .2s;
}

textarea {
border: 1px solid #ccc;
resize: vertical;
}

input:hover,
textarea:hover {
box-shadow: 5px 5px 10px black;
Expand Down Expand Up @@ -172,4 +178,4 @@ button:hover {
font-size: 13px;
color: rgb(255, 255, 255);
margin-bottom: 0;
}
}

0 comments on commit ca00697

Please sign in to comment.