From 65108e508889be7255f3c56a57fddfc4a922a561 Mon Sep 17 00:00:00 2001 From: alvarule Date: Sat, 1 Oct 2022 14:52:22 +0530 Subject: [PATCH] hover effect added to the input fields --- 7-bank-project/solution/styles.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/7-bank-project/solution/styles.css b/7-bank-project/solution/styles.css index 38c760dd..998ebe19 100644 --- a/7-bank-project/solution/styles.css +++ b/7-bank-project/solution/styles.css @@ -63,6 +63,11 @@ input { border-radius: var(--radius); } +input:hover{ + border-color: var(--primary); + outline: 0; +} + input:focus { border-color: var(--primary); outline: 0;