¿Cómo cambiar las posiciones del botón de publicar y la subida de imágenes? (móvil)


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 así debería llevarte la mayor parte del camino… No lo he probado extensamente, así que simplemente mantén un ojo en las cosas, ya que podría necesitar algunos ajustes adicionales en ciertos contextos.

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