fix(search): add borders for list items (#38425)

Co-authored-by: Ahmad Abdolsaheb <ahmad.abdolsaheb@gmail.com>
This commit is contained in:
Ashraf Nazar
2020-03-26 17:05:34 +00:00
committed by GitHub
parent 4300ce44db
commit 66cbabda22
2 changed files with 9 additions and 4 deletions

View File

@@ -664,10 +664,16 @@ a[class^='ais-'] {
background-color: #fff;
}
.ais-Hits-item {
width: 100%;
border-bottom: 0.75px solid var(--gray-45);
margin: 0;
padding: 0;
border: 0;
padding: 5px 0;
width: 100%;
}
.ais-Hits-item:first-of-type {
border-top: 0.75px solid var(--gray-45);
}
.ais-Hits-item:last-of-type {
border-top: 1px solid var(--gray-00);
}
.ais-Hits-list {
margin: 0;

View File

@@ -114,7 +114,6 @@ and arrow keys */
/* Dropdown footer */
.fcc_suggestion_footer {
padding: 6.5px 8px 8px;
border-top: 1.5px solid var(--gray-00);
}
.fcc_suggestion_footer .hit-name .ais-Highlight {