Tweaked form input styling

This commit is contained in:
BordedDev 2025-03-08 18:56:55 +01:00
parent 7c22a70722
commit c9113ca095
No known key found for this signature in database
GPG Key ID: C5F495EAE56673BF

View File

@ -83,6 +83,18 @@ class GenericField extends HTMLElement {
background-color: #1a1a1a; background-color: #1a1a1a;
color: #e6e6e6; color: #e6e6e6;
font-size: 1em; font-size: 1em;
&:focus {
outline: 2px solid #f05a28 !important;
}
&::placeholder {
transition: opacity 0.3s;
}
&:focus::placeholder {
opacity: 0.4;
}
} }
button { button {