Como trocar a posição do botão de postar e do upload de imagem? (mobile)


We got a majority of feedback that we should have the post button on the right, it’s for better UX. Any idea how I can switch the places of these two elements? I’ve tried float: right but no luck.

Algo assim deve levar você a grande parte do caminho… Não o testei extensivamente, então fique de olho nas coisas, pois pode precisar de alguns ajustes adicionais em certos contextos.

#reply-control .submit-panel .save-or-cancel {
  flex-direction: row-reverse;
  order: 2;
}
7 curtidas