UX: let mobile post controls scroll on overflow (#15305)

This commit is contained in:
Kris 2021-12-15 15:36:10 -05:00 committed by GitHub
parent a2fcc360dd
commit 1c9a0fe18e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,7 +37,11 @@ span.badge-posts {
}
.actions {
display: flex;
justify-content: flex-end;
// using an auto margin on first-child instead of justify-content on the parent
// because justify-content breaks overflow scrolling
:first-child {
margin-left: auto;
}
// Handles the like and flag buttons in the post menu.
.double-button {