FIX: adjust tag composer input to avoid wrapping (#324)

This commit is contained in:
Kris 2023-11-28 17:38:29 -05:00 committed by GitHub
parent fd0fb58eca
commit 0b9947771c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 3 deletions

View File

@ -294,13 +294,16 @@
// Prevent suggestion button from wrapping
#reply-control {
.with-category .showing-ai-suggestions .category-input,
.with-tags .showing-ai-suggestions .mini-tag-chooser {
.with-category .showing-ai-suggestions .category-input {
flex-wrap: nowrap;
.select-kit {
max-width: calc(100% - 34px);
max-width: calc(100% - 2.25em);
}
}
.with-tags .showing-ai-suggestions .mini-tag-chooser.select-kit {
max-width: calc(100% - 2.25em);
}
}
.suggest-tags-button + .ai-suggestions-menu {