feat(search): clean up search suggestion padding

This commit is contained in:
alistair3149 2024-09-26 19:29:56 -04:00
parent 138f7a9bd5
commit f1bf40ac78
No known key found for this signature in database
2 changed files with 13 additions and 1 deletions

View file

@ -5,11 +5,21 @@
display: flex;
flex-direction: column;
gap: var( --space-xs );
margin: var( --space-xs ) 0;
margin: 0;
list-style: none;
border-bottom-right-radius: var( --border-radius-medium );
border-bottom-left-radius: var( --border-radius-medium );
> li {
&:first-of-type {
margin-top: var( --space-xs );
}
&:last-of-type {
margin-bottom: var( --space-xs );
}
}
a {
&:hover,
&:focus {

View file

@ -140,6 +140,8 @@
}
&__footer {
position: sticky;
bottom: 0;
display: flex;
gap: var( --space-lg );
align-items: center;