Skip to content

lock icon overlaps placeholder text in login page #138

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions login.css
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,8 @@ body {
}

.form-container input[type="email"],
.form-container input[type="password"] {
.form-container input[type="password"],
.form-container input[type="text"] {
padding: 15px 15px 15px 45px;
border: 2px solid #e8f5e8;
border-radius: 12px;
Expand All @@ -162,17 +163,20 @@ body {
background: rgba(248, 250, 248, 0.8);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
outline: none;

}

.form-container input[type="email"]:focus,
.form-container input[type="password"]:focus {
.form-container input[type="password"]:focus,
.form-container input[type="text"] {
border-color: #2e7d32;
background: white;
box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1),
0 8px 20px rgba(46, 125, 50, 0.1);
transform: translateY(-2px);
}


.form-container input::placeholder {
color: #999;
font-size: 15px;
Expand All @@ -190,7 +194,7 @@ body {
cursor: pointer;
padding: 5px;
border-radius: 4px;
transition: all 0.2s ease;
transition: all 0.2s ease;
}

.password-toggle:hover {
Expand Down