Correct way to style the topic page

Hi guys I am trying to move these but unsure about the correct way of going about it. Is it just the case of making a component to do it?

( I use the nested topic replies)

I’ve moved them with a component but does this add to bloat etc

You can add justify-content: flex-end; to .custom-topic-layout_bottom-bar :slight_smile:

Sorry i meant in the nested toolbar, i’ve done it with a component but not sure if thats the correct way

It’s the same logic, you can look at the HTLM and CSS code with your browser’s dev tools and see how it happens.

I didn’t try, but I think this customization should work:

@include viewport.from(sm) {
    .nested-post__menu nav.post-controls {
        justify-content: flex-end;
    }
}