blur background when changing password
This commit is contained in:
@@ -43,6 +43,10 @@ button:hover {
|
||||
background-color: var(--primary-hover);
|
||||
}
|
||||
|
||||
button:focus {
|
||||
outline: 2px solid var(--primary-accent);
|
||||
}
|
||||
|
||||
input {
|
||||
padding: 12px;
|
||||
background-color: var(--bg-input);
|
||||
@@ -51,6 +55,10 @@ input {
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
input:focus {
|
||||
outline: 2px solid var(--primary-accent);
|
||||
}
|
||||
|
||||
input::placeholder {
|
||||
color: var(--text-muted);
|
||||
}
|
||||
@@ -74,8 +82,9 @@ input::placeholder {
|
||||
height: 100%;
|
||||
z-index: 9999; /* higher = on top */
|
||||
|
||||
background-color: black;
|
||||
opacity: 10%;
|
||||
backdrop-filter: blur(4px);
|
||||
background-color: rgba(0, 0, 0, 0.3);
|
||||
pointer-events: all;
|
||||
}
|
||||
|
||||
.dialouge_title {
|
||||
|
||||
Reference in New Issue
Block a user