Skip to content

Commit

Permalink
webapp: fix inverter "add" and "save order" button positions
Browse files Browse the repository at this point in the history
the source tells us that the buttons are supposed to be on the right of
tha card, but the CSS broke at some point.
  • Loading branch information
schlimmchen committed Oct 29, 2024
1 parent 0a5bd65 commit b6c0a85
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions webapp/src/views/InverterAdminView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
required
/>
</div>
<div class="ml-auto text-right">
<button type="submit" class="btn btn-primary my-2">
<div class="d-flex my-3">
<button type="submit" class="btn btn-primary ms-auto">
{{ $t('inverteradmin.Add') }}
</button>
</div>
Expand Down Expand Up @@ -81,8 +81,8 @@
</tbody>
</table>
</div>
<div class="ml-auto text-right">
<button class="btn btn-primary my-2" @click="onSaveOrder()">
<div class="d-flex mt-1 mb-3">
<button class="btn btn-primary ms-auto" @click="onSaveOrder()">
{{ $t('inverteradmin.SaveOrder') }}
</button>
</div>
Expand Down

0 comments on commit b6c0a85

Please sign in to comment.