otp.html - Changed Input Boxes to have a dark background and white text

This commit is contained in:
Matthew Patrick 2021-09-26 17:10:49 +07:00
parent ef9f548d99
commit 6c92c84cc6

View file

@ -21,6 +21,21 @@
background-color: #1b1c1e;
}
.form-control {
background-color: #212226;
color: white;
}
.form-control:valid {
background-color: #212226;
color: white;
}
.form-control:invalid {
background-color: #2f0001;
color: white;
}
.nav-color {
background-color: #212226;
}