Skip to content

Commit

Permalink
Fix missing styles for email input
Browse files Browse the repository at this point in the history
  • Loading branch information
DaPigGuy committed Dec 14, 2023
1 parent 43a4656 commit 150a2a1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/App.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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);
Expand Down

0 comments on commit 150a2a1

Please sign in to comment.