site banner

Small-Scale Question Sunday for November 30, 2025

Do you have a dumb question that you're kind of embarrassed to ask in the main thread? Is there something you're just not sure about?

This is your opportunity to ask questions. No question too simple or too silly.

Culture war topics are accepted, and proposals for a better intro post are appreciated.

2
Jump in the discussion.

No email address required.

My guess is most people hold the phone in their right hand, and right-aligned buttons are easier to reach with the thumb.

The buttons only became right-aligned on mobile within the past week. Previously they were left-aligned, which I definitely preferred.

I have found the relevant code. Apparently, the buttons were always supposed to be right-aligned, but badly written HTML and/or CSS prevented that from happening. @ZorbaTHut fixed the HTML to match the intent.

If you want, you can submit a pull request to undo the change by deleting the text "justify-content-end" from this line of code.

Thanks!

If you also don't want to revert the thing for everyone, the user can also add

.comment-actions {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start !important;
}

to their Custom CSS at https://www.themotte.org/settings/css

Possibly wraped with a

@media (max-width: 768px) {....

If it does weird stuff when not on mobile.