Made some visual changes but need to work on some searches occuring more than once.

This commit is contained in:
deepjyoti30
2020-07-08 21:39:51 +05:30
parent 41852129a6
commit 350caf0022
3 changed files with 24 additions and 21 deletions

View File

@@ -92,6 +92,9 @@ body {
right: 0;
z-index: 99;
border-radius: 6px;
background: lighten($background, 5);
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
transition: all 0.3s cubic-bezier(.25,.8,.25,1);
.autocomplete-item {
width: 100%;
@@ -105,17 +108,13 @@ body {
color: $foreground;
box-sizing: border-box;
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
transition: all 0.3s cubic-bezier(.25,.8,.25,1);
&:hover {
background-color: red;
background: lighten($background, 10);
}
}
.autocomplete-active {
background-color: DodgerBlue !important;
color: #ffffff;
background: lighten($background, 8);
}
}