feat: add color to focused input border

This commit is contained in:
RadoslavDimchev 2023-09-04 11:25:13 +03:00
parent 5428cc0793
commit 7e9e6990d7
1 changed files with 5 additions and 0 deletions

View File

@ -12,6 +12,11 @@ input[type="text"], .suggestion-list {
width: 100%;
}
input[type="text"]:focus {
outline: none;
border: 2px solid #4360DF;
}
.suggestion-list {
position: absolute;
z-index: 1000;