From ca0069799de10a86e64343bbbdb377cbb36c09b8 Mon Sep 17 00:00:00 2001 From: vedanshi pathak <141757766+vedanshipathak@users.noreply.github.com> Date: Fri, 24 May 2024 15:53:30 +0530 Subject: [PATCH] Fixed overflowing of textarea in Contact page (#806) --- assets/contact/contact.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/assets/contact/contact.css b/assets/contact/contact.css index 099616103..249d4ab43 100644 --- a/assets/contact/contact.css +++ b/assets/contact/contact.css @@ -37,6 +37,7 @@ header { justify-content: center; align-items: center; box-shadow: -10px -10px 50px #b400a5; + overflow: auto; } .contact-container h2 { @@ -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; @@ -172,4 +178,4 @@ button:hover { font-size: 13px; color: rgb(255, 255, 255); margin-bottom: 0; -} \ No newline at end of file +}