From ad7fb8354a78327d3df07bbf60c53c1c9efc1f83 Mon Sep 17 00:00:00 2001 From: AnupamHaldkar Date: Sun, 25 May 2025 11:18:15 +0530 Subject: [PATCH] =?UTF-8?q?hover=20button=20feature=20=F0=9F=94=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/styles/App.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/styles/App.css b/src/styles/App.css index 63b5702..3e941ef 100644 --- a/src/styles/App.css +++ b/src/styles/App.css @@ -156,6 +156,12 @@ button:disabled { cursor: not-allowed; } +button:not(:disabled):hover{ + background-color: #7f3aa3; + color: white; + transition: all 0.3s ease; +} + form input { width: 30rem; border-radius: 0.4rem 0 0 0.4rem; @@ -183,6 +189,13 @@ form button { gap: 7px; } +.App-download-button:hover { + background-color: #7f3aa3; + color: white; + transform: scale(1.05); + transition: all 0.3s ease; +} + .App-themes label { display: flex; justify-content: flex-start;