Style fix: remove padding from last result in prompt typeahead dropdown

This commit is contained in:
Niel Thiart 2023-12-05 15:52:22 +02:00
parent 76fd31ef9e
commit 51aa1f57e7
No known key found for this signature in database
GPG Key ID: 6AECF816A8741B0A
1 changed files with 4 additions and 2 deletions

View File

@ -271,9 +271,11 @@ $modal-background-background-color-dark: rgba($dark, 0.86) !default; // remove t
max-height: calc(60vh);
overflow: auto;
> li:not(:last-of-type) {
> li {
padding: 0;
border-bottom: 0 none;
&:not(:last-of-type) {
border-bottom: 0 none;
}
}
}