Decrease padding of AutocompleteItem

This commit is contained in:
Henrik Giesel 2021-09-07 15:24:46 +02:00
parent f79e2aca92
commit b8a5b5d685

View file

@ -25,7 +25,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
{id}
tabindex="-1"
bind:this={buttonRef}
class={`btn ${className}`}
class="autocomplete-item btn {className}"
class:btn-day={!nightMode}
class:btn-night={nightMode}
class:selected
@ -41,6 +41,10 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
<style lang="scss">
@use 'button-mixins' as button;
.autocomplete-item {
padding: 1px 7px 2px;
}
button {
display: flex;
justify-content: space-between;