I'm removing these from the first post because these issues are fixed starting with beta 16. But, I'm putting them here in case someone still needs them.
Again, these are NOT needed as of beta 16! 👍
Fix double tap on some touch devices (iPad for sure):
Fixed as of beta 16
.DiscussionListItem .Dropdown-toggle.Button {
display: none;
}
.no-touch .DiscussionListItem .Dropdown-toggle.Button {
display: block;
}
Fix post box going off screen on mobile:
Fixed as of beta 16
@media (max-width: 767px) {
.Composer:not(.minimized) {
position: fixed;
top: 0 !important;
}
}
Fixes odd bug where header menu bar text disappears on mobile:
Fixed as of beta 16
.App-navigation {
transform: initial;
}