It’s very easy to align an element with <q-space> in a row.

To align a button to the right you can add the row class to the containing element and simply add <q-space />:

<q-form> .... <div class="row"> <q-space /> <q-btn label="Submit" type="submit" color="primary" /> </div> </q-form>

Depending on where you place <q-space />, it pushes the button to the right, left or (if you use one above and one below the button) to the middle of the row.

Thanks Scott for the helpful link to the docs: