more custom elements

This commit is contained in:
SpikeHD
2022-05-10 00:35:50 -07:00
parent 18a74590f9
commit 6dcc91f216
6 changed files with 120 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
.TextInput {
border: none;
border-bottom: 2px solid #cecece;
transition: border-bottom-color 0.1s ease-in-out;
}
.TextInput:focus {
outline: none;
border-bottom-color: #ffd326;
}