UX: prevent suggestion button from wrapping (#282)
* UX: prevent suggestion button from wrapping This PR addresses the visual bug where the suggestion button wraps on any screen size. * UX: edge case screen size This addition fixes screen size issues at specific screen sizes without affecting larger screen sizes, no media query necessary.
This commit is contained in:
parent
f6996a6ef0
commit
3df6cb1ec9
|
@ -292,17 +292,13 @@
|
|||
position: relative;
|
||||
}
|
||||
|
||||
// Prevent suggestion button from wrapping on smaller screens
|
||||
@media screen and (max-width: 768px) {
|
||||
#reply-control .composer-fields.showing-ai-suggestions {
|
||||
.category-input {
|
||||
.category-chooser {
|
||||
width: 10px;
|
||||
}
|
||||
|
||||
+ .mini-tag-chooser {
|
||||
width: 10px;
|
||||
}
|
||||
// Prevent suggestion button from wrapping
|
||||
#reply-control {
|
||||
.with-category .showing-ai-suggestions .category-input,
|
||||
.with-tags .showing-ai-suggestions .mini-tag-chooser {
|
||||
flex-wrap: nowrap;
|
||||
.select-kit {
|
||||
max-width: calc(100% - 34px);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue