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 {
@apply ml-2;
}
.taginput-input-wrapper {
@apply block;
}
/* Autocomplete */
.autocomplete {

View File

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

View File

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