From 150a2a15c394c03129219d3ed76cfb12e9bbc671 Mon Sep 17 00:00:00 2001 From: DaPigGuy Date: Wed, 13 Dec 2023 22:39:58 -0800 Subject: [PATCH] Fix missing styles for email input --- src/App.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/App.scss b/src/App.scss index a8d1e87..ae84d1e 100644 --- a/src/App.scss +++ b/src/App.scss @@ -245,6 +245,7 @@ button:hover::before { /* Text/Password input */ input[type="text"], +input[type="email"], input[type="password"], input[type="number"] { background-color: rgba(245, 227, 173, 0.05); @@ -257,9 +258,11 @@ input[type="number"] { } input[type="text"]:hover, +input[type="email"]:hover, input[type="password"]:hover, input[type="number"]:hover, input[type="text"]:focus, +input[type="email"]:focus, input[type="password"]:focus, input[type="number"]:focus { border: 1px solid rgba(245, 227, 173, 0.25);