fix(front): fix TagInput width properly

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2024-01-05 17:37:23 +01:00
parent 01eecbf1d4
commit 6a4123f385
No known key found for this signature in database
GPG key ID: A061B9DDE0CA0773
3 changed files with 4 additions and 5 deletions

View file

@ -153,6 +153,9 @@ body {
.taginput-item:first-child { .taginput-item:first-child {
@apply ml-2; @apply ml-2;
} }
.taginput-input-wrapper {
@apply block;
}
/* Autocomplete */ /* Autocomplete */
.autocomplete { .autocomplete {

View file

@ -101,8 +101,3 @@ const tagsStrings = computed({
}, },
}); });
</script> </script>
<style lang="scss" scoped>
:deep(.o-input__wrapper) {
display: initial;
}
</style>

View file

@ -30,6 +30,7 @@ export const orugaConfig = {
autocompleteClasses: { autocompleteClasses: {
rootClass: "taginput-autocomplete", rootClass: "taginput-autocomplete",
inputClasses: { inputClasses: {
rootClass: "taginput-input-wrapper",
inputClass: "taginput-input", inputClass: "taginput-input",
}, },
}, },