Adjust padding of TagInput a little

This commit is contained in:
Henrik Giesel 2021-06-25 19:39:13 +02:00
parent 281985480d
commit c8ac822971
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,6 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
(createDropdown: (element: HTMLElement) => Dropdown) =>
(element: HTMLElement) => {
autocomplete = createDropdown(element);
autocomplete.show();
return autocomplete;
};
</script>

View File

@ -128,7 +128,8 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
outline: none;
border: none;
margin: 0;
padding: 0;
/* adjust so deleting all tags does not cause a reflow */
padding: 1.5px 0;
}
&::after {