Skip to content

Commit

Permalink
contact text area resize
Browse files Browse the repository at this point in the history
  • Loading branch information
vedanshipathak committed May 23, 2024
1 parent ded4fe2 commit 7eddfc2
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions 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 @@ -68,15 +69,28 @@ label {
text-shadow: 2px 2px 10px var(--light);
}

input,
textarea {
input
{
width: 100%;
padding: 10px;
border-radius: 6px;
margin-top: 8px;
margin-bottom: 25px;
border: 0;
/* transition: all linear .2s; */
}
textarea {
/* max-width: 550px; */
width: 100%;
padding: 10px;

border-radius: 6px;
margin-top: 8px;
margin-bottom: 25px;
border: 1px solid #ccc;
/* box-sizing: border-box; Include padding and border in the width calculation */
transition: all linear .2s;
resize:vertical;
}

input:hover,
Expand Down

0 comments on commit 7eddfc2

Please sign in to comment.