Fix dropdown overflow on mobile (flarum/core#2070) (#46)

* Fix dropdown overflow on mobile (flarum/core#2070)
This commit is contained in:
timas130 2020-05-20 22:20:02 +03:00 committed by GitHub
parent 665f41a518
commit 43ad78654c

View File

@ -91,3 +91,8 @@
position: absolute;
.Button--color(@tooltip-color, @tooltip-bg);
}
@media screen and (max-width: @screen-phone-max) {
.MentionsDropdown {
max-width: 100%;
}
}