Skip to content

Commit

Permalink
Fix jumping tag auto complete
Browse files Browse the repository at this point in the history
  • Loading branch information
sissbruecker committed Apr 9, 2024
1 parent edd958f commit 3ffec72
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions bookmarks/frontend/components/TagAutocomplete.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -150,17 +150,27 @@
display: block;
}
.form-autocomplete-input {
box-sizing: border-box;
height: var(--control-size);
min-height: var(--control-size);
padding: 0;
}
.form-autocomplete-input input {
width: 100%;
height: 100%;
border: none;
margin: 0;
}
.form-autocomplete.small .form-autocomplete-input {
height: var(--control-size-sm);
min-height: var(--control-size-sm);
padding: 0.05rem 0.3rem;
}
.form-autocomplete.small .form-autocomplete-input input {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
padding: 0.05rem 0.3rem;
font-size: var(--font-size-sm);
}
Expand Down

0 comments on commit 3ffec72

Please sign in to comment.