How do you change the order of <Flop.Phoenix.pagination meta={@meta} event=“paginate-whatever” />?

That works. If you don’t pass any options, flop_phoenix will use default classes. If you’re ok with those default class names, you can omit the options and just use this snippet:

.pagination {
  display: flex;

  .pagination-list {
    order: 2;
  }

  .pagination-previous {
    order: 1;
  }

  .pagination-next {
    order: 3;
  }
}